OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:c99
(Results
26 - 50
of
1368
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Sema/
builtins-gnu-mode.c
1
// RUN: %clang_cc1 -fsyntax-only -verify -std=
c99
%s
c89.c
64
void test10 (int x[*]); /* expected-warning {{variable length arrays are a
C99
feature}} */
65
void test11 (int x[static 4]); /* expected-warning {{static array size is a
C99
feature}} */
67
void test12 (int x[const 4]) { /* expected-warning {{qualifier in array size is a
C99
feature}} */
68
int Y[x[1]]; /* expected-warning {{variable length arrays are a
C99
feature}} */
84
int test15[5] = { [2] = 1 }; /* expected-warning {{designated initializers are a
C99
feature}} */
93
struct x { int x,y[]; }; /* expected-warning {{flexible array members are a
C99
feature}} */
116
long long ll1 = /* expected-warning {{'long long' is an extension when
C99
mode is not enabled}} */
117
-42LL; /* expected-warning {{'long long' is an extension when
C99
mode is not enabled}} */
118
unsigned long long ull1 = /* expected-warning {{'long long' is an extension when
C99
mode is not enabled}} */
119
42ULL; /* expected-warning {{'long long' is an extension when
C99
mode is not enabled}} *
[
all
...]
expr-comma-c99.c
1
// RUN: %clang_cc1 %s -fsyntax-only -verify -std=
c99
-Wno-sizeof-array-decay
13
// comma does array/function promotion in
c99
.
for.c
3
// Check
C99
6.8.5p3
warn-vla.c
1
// RUN: %clang_cc1 -std=
c99
-fsyntax-only -verify -Wvla %s
implicit-decl.c
13
expected-error {{implicit declaration of function '_CFCalendarDecomposeAbsoluteTimeV' is invalid in
C99
}}
16
printg("Hello, World!\n"); // expected-error{{implicit declaration of function 'printg' is invalid in
C99
}} \
30
formatd("Hello, World!\n"); // expected-error{{implicit declaration of function 'formatd' is invalid in
C99
}} \
/external/clang/test/Lexer/
c90.c
5
0x0p-1 /* expected-error {{hexadecimal floating constants are a
C99
feature}} */
32
(void)L"\u1234"; // expected-error {{universal character names are only valid in
C99
or C++}}
33
(void)L'\u1234'; // expected-error {{universal character names are only valid in
C99
or C++}}
43
#define MY_UCN \u00FC // expected-warning {{universal character names are only valid in
C99
or C++; treating as '\' followed by identifier}}
46
extern int idWithUCN\u00FC; // expected-warning {{universal character names are only valid in
C99
or C++; treating as '\' followed by identifier}} expected-error {{expected ';'}}
keywords_test.c
1
// RUN: %clang_cc1 -std=
c99
-E %s -o - | FileCheck --check-prefix=CHECK-NONE %s
5
// RUN: %clang_cc1 -std=
c99
-fgnu-keywords -E %s -o - \
10
// RUN: %clang_cc1 -std=
c99
-fms-extensions -E %s -o - \
12
// RUN: %clang_cc1 -std=
c99
-fdeclspec -E %s -o - \
14
// RUN: %clang_cc1 -std=
c99
-fms-extensions -fno-declspec -E %s -o - \
/external/clang/test/Preprocessor/
ucn-allowed-chars.c
1
// RUN: %clang_cc1 %s -fsyntax-only -std=
c99
-verify
8
extern char a\u00AA; //
C99
, C11, C++11
10
extern char a\u0E50; //
C99
, C++03, C11, C++11
19
extern char \u0300; // disallowed initially in C11/C++11, always in
C99
/C++03
20
extern char \u0D61; //
C99
, C11, C++03, C++11
61
// expected-warning@7 {{using this character in an identifier is incompatible with
C99
}}
62
// expected-warning@9 {{using this character in an identifier is incompatible with
C99
}}
64
// expected-warning@18 {{starting an identifier with this character is incompatible with
C99
}}
69
//
C99
utf8-allowed-chars.c
1
// RUN: %clang_cc1 %s -fsyntax-only -std=
c99
-verify
10
extern char aŠ; //
C99
, C11, C++11
12
extern char a?; //
C99
, C++03, C11, C++11
21
extern char ?; // disallowed initially in C11/C++11, always in
C99
/C++03
51
// expected-warning@9 {{using this character in an identifier is incompatible with
C99
}}
52
// expected-warning@11 {{using this character in an identifier is incompatible with
C99
}}
54
// expected-warning@14 {{using this character in an identifier is incompatible with
C99
}}
55
// expected-warning@20 {{starting an identifier with this character is incompatible with
C99
}}
59
//
C99
c99-6_10_3_4_p7.c
1
// Example from
C99
6.10.3.4p7
/external/clang/test/SemaCXX/
c99-variable-length-array.cpp
17
int array1[N]; // expected-warning{{variable length arrays are a
C99
feature}}
18
POD array2[N]; // expected-warning{{variable length arrays are a
C99
feature}}
26
int array1[N]; // expected-warning{{variable length arrays are a
C99
feature}}
39
int array2[T::value]; // expected-warning{{variable length arrays are a
C99
feature}}
50
int array[N]; // expected-warning{{variable length arrays are a
C99
feature}}
57
// expected-warning{{variable length arrays are a
C99
feature}}
72
int array[N]; // expected-warning{{variable length arrays are a
C99
feature}}
82
// expected-warning{{variable length arrays are a
C99
feature}}
92
struct edge_info edgeInfo[x]; // expected-warning{{variable length arrays are a
C99
feature}}
100
int array[value * i]; // expected-warning 2{{variable length arrays are a
C99
feature}
[
all
...]
/device/google/marlin/dataservices/datatop/src/
Makefile.am
3
CFLAGS := -std=
c99
# Target
c99
for portability
/external/clang/test/Modules/
modulemap-locations.m
15
wont_be_found1(); // expected-warning{{implicit declaration of function 'wont_be_found1' is invalid in
C99
}}
17
wont_be_found2(); // expected-warning{{implicit declaration of function 'wont_be_found2' is invalid in
C99
}}
/external/mesa3d/src/mapi/mapi/
u_compiler.h
19
/*
C99
supports inline keyword */
21
/*
C99
supports inline keyword */
/external/autotest/client/site_tests/platform_CompressedSwapPerf/src/
Makefile
7
CFLAGS = -std=
c99
-D_GNU_SOURCE -O0
/external/clang/test/CodeGen/
linkage-redecl.c
10
//
C99
6.2.2p3
/external/clang/test/Frontend/
hexagon-target-basic.c
8
int x; // In
C99
, a translation unit needs to have at least one declaration.
/external/clang/test/PCH/
pch__VA_ARGS__.c
6
// CHECK-NOT: warning: __VA_ARGS__ can only appear in the expansion of a
C99
variadic macro
/external/clang/test/Parser/
nullability.c
1
// RUN: %clang_cc1 -fsyntax-only -std=
c99
-Wno-nullability-declspec -pedantic %s -verify
/frameworks/compile/slang/tests/F_warnings_as_error/
stderr.txt.expect
1
deprecated.rs:9:11: error: implicit declaration of function 'func0' is invalid in
C99
/external/libcxx/include/
climits
35
LLONG_MIN //
C99
36
LLONG_MAX //
C99
37
ULLONG_MAX //
C99
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
climits
35
LLONG_MIN //
C99
36
LLONG_MAX //
C99
37
ULLONG_MAX //
C99
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
climits
35
LLONG_MIN //
C99
36
LLONG_MAX //
C99
37
ULLONG_MAX //
C99
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreetypeBuild.java
77
win32home.cFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
78
win32home.cppFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
83
win32.cFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
84
win32.cppFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
89
win64.cFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
90
win64.cppFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
95
lin32.cFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
96
lin32.cppFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
101
lin64.cFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
102
lin64.cppFlags += " -std=
c99
-DFT2_BUILD_LIBRARY";
[
all
...]
Completed in 512 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>