/external/clang/test/Preprocessor/ |
macro_expandloc.c | 2 #define FOO 1 5 #include FOO
|
unterminated.c | 3 #ifdef FOO // expected-error {{unterminated conditional directive}}
|
macro_expandloc2.c | 2 #define FOO BAR 5 #include FOO
|
comment_save_macro.c | 11 #define FOO bork // blah 12 boo FOO bar // zot
|
builtin_line.c | 2 #define FOO __LINE__ 4 FOO
|
macro_paste_simple.c | 3 #define FOO bar ## baz ## 123 6 A: FOO
|
pragma_diagnostic.c | 4 #if FOO // ok. 9 #if FOO // expected-warning {{'FOO' is not defined}} 14 #if FOO // ok. 19 #if FOO // expected-error {{'FOO' is not defined}} 23 #define foo error macro 24 #pragma GCC diagnostic foo "-Wundef" // expected-warning {{pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop'}}
|
/external/clang/test/Lexer/ |
rdar-8914293.c | 6 /* expected-warning {{missing terminating}} */ #define FOO "foo
|
preamble.c | 4 #ifndef FOO 14 int foo(); 29 // CHECK-NEXT: #ifndef FOO
|
/external/mesa3d/src/glsl/glcpp/tests/ |
064-version.c | 2 #define FOO
|
078-elif-without-if.c | 1 #elif defined FOO
|
/development/ndk/samples/module-exports/jni/bar/ |
bar.h | 4 /* FOO should be defined to '1' here with the magic of LOCAL_EXPORT_CFLAGS */ 5 #ifndef FOO 6 #error FOO should be defined here ! 9 #if FOO != 1 10 #error FOO is not correctly defined here !
|
/external/clang/test/PCH/ |
fuzzy-pch.c | 9 #ifndef FOO 10 # error FOO was not defined 13 #if FOO != 1 14 # error FOO has the wrong definition
|
preamble.c | 20 return FOO(x);
|
/external/llvm/test/FrontendC/ |
2002-02-13-TypeVarNameCollision.c | 7 typedef struct foo { struct 9 } FOO; 11 static FOO foo[100]; variable 14 return foo[4].Y;
|
2002-02-18-StaticData.c | 4 double FOO = 17; 12 void *Data[] = { &FOO, &BAR, &XX };
|
2007-11-28-GlobalInitializer.c | 3 typedef struct foo { int x; char *p; } FOO; struct 4 extern FOO yy[];
|
/sdk/testapps/basicJar/src/com/android/tests/basicjar/ |
Foo.java | 5 public class Foo { 6 public static int FOO = 42; 9 return FOO; 14 return r.nextInt(FOO);
|
/sdk/testapps/basicJavaProject/src/com/android/tests/basicJavaProject/ |
Foo.java | 5 public class Foo { 6 public static int FOO = 42; 9 return FOO; 14 return r.nextInt(FOO);
|
/external/clang/test/Index/ |
complete-unterminated.c | 16 #define FOO(a, b) a b 18 FOO(int, x);
|
nested-macro-instantiations.cpp | 1 #define FOO(x) x 2 #define BAR(x) FOO(x) 12 // CHECK-WITH-NESTED: nested-macro-instantiations.cpp:2:16: macro expansion=FOO:1:9 Extent=[2:16 - 5:14]
|
complete-macros.c | 4 #define FOO(Arg1,Arg2) foobar 20 // CHECK-CC1: macro definition:{TypedText FOO}{LeftParen (}{Placeholder Arg1}{Comma , }{Placeholder Arg2}{RightParen )}
|
/external/llvm/test/FrontendC++/ |
2005-07-21-VirtualBaseAccess.cpp | 3 void foo(int*); 5 struct FOO { 9 struct BAR : virtual FOO { BAR(); }; 13 foo(&B.X);
|
/development/ndk/samples/module-exports/jni/foo/ |
foo.c | 1 #include "foo.h" 4 /* FOO should be defined to '2' when building foo.c */ 5 #ifndef FOO 6 #error FOO is not defined here ! 9 #if FOO != 2 10 #error FOO is incorrectly defined here ! 16 int foo(int x) function 18 LOGI("foo(%d) called !", x);
|
/external/clang/test/CodeCompletion/Inputs/ |
macros.h | 1 #define FOO
|