HomeSort by relevance Sort by last modified time
    Searched defs:FOO (Results 1 - 25 of 43) sorted by null

1 2

  /external/clang/test/Index/
file-macro-refs.c 1 #define FOO
3 FOO
4 FOO
9 // CHECK: macro expansion=FOO:1:9
10 // CHECK-NEXT: macro definition=FOO =[1:9 - 1:12]
11 // CHECK-NEXT: macro expansion=FOO:1:9 =[3:1 - 3:4]
12 // CHECK-NEXT: macro expansion=FOO:1:9 =[4:1 - 4:4]
complete-unterminated.c 16 #define FOO(a, b) a b
18 FOO(int, x);
annotate-comments-preprocessor.c 34 #define FOO \
43 FOO;
  /external/clang/test/Lexer/
rdar-8914293.c 6 /* expected-warning {{missing terminating}} */ #define FOO "foo
  /external/clang/test/Preprocessor/
comment_save_macro.c 11 #define FOO bork // blah
12 boo FOO bar // zot
expr_define_expansion.c 4 #define FOO && 1
5 #if defined FOO FOO
builtin_line.c 2 #define FOO __LINE__
4 FOO
macro_expandloc.c 2 #define FOO 1
7 #include FOO
macro_paste_empty.c 5 #define FOO(X) X ## Y
6 a:FOO()
macro_paste_simple.c 3 #define FOO bar ## baz ## 123
6 A: FOO
macro_paste_hashhash.c 9 #define FOO(x) A x B
11 FOO(##);
assembler-with-cpp.c 48 #define FOO(name) name ## $foo
49 6: FOO(blarg)
50 // CHECK-Identifiers-False: 6: blarg $foo
53 #define FOO(name) name ## $foo
54 7: FOO(blarg)
55 // CHECK-Identifiers-True: 7: blarg$foo
61 9: T7(foo)
63 // CHECK-Identifiers-True: 9: T7 "foo"
    [all...]
  /external/clang/test/PCH/
pch-dir.c 2 // RUN: %clang -x c-header %S/pch-dir.h -DFOO=foo -o %t.h.gch/c.gch
5 // RUN: %clang -include %t.h -DFOO=foo -fsyntax-only %s -Xclang -print-stats 2> %t.clog
16 int FOO;
  /frameworks/compile/libbcc/tests/data/src/
constants.c 1 #define FOO 0x10
6 printf("0x10 = %d\n", FOO);
  /external/clang/test/CodeGenCXX/
pragma-pack-2.cpp 4 struct FOO {
10 // CHECK: %struct.BAR = type <{ %struct.FOO, i8, i8 }>
11 struct BAR : FOO {
template-anonymous-types.cpp 4 enum { FOO = 42 };
20 // Look for two instantiations, one for FOO's
23 (void)f(S::FOO);
34 // FOO's instantiation of X:
  /ndk/
ndk-build.cmd 8 :FOO
14 call :FOO %NDK_ROOT%
ndk-gdb-py.cmd 8 :FOO
14 call :FOO %NDK_ROOT%
  /external/clang/test/CodeGen/
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[];
  /external/clang/test/CodeCompletion/Inputs/
macros.h 1 #define FOO
  /external/clang/test/Parser/
warn-dangling-else.cpp 43 #define FOO(X) \
53 FOO(x) << "hello"; // no warning
  /external/clang/test/SemaCXX/
attr-unavailable.cpp 3 int &foo(int); // expected-note {{candidate}}
4 double &foo(double); // expected-note {{candidate}}
5 void foo(...) __attribute__((__unavailable__)); // expected-note {{candidate function}} \
11 int &ir = foo(1);
12 double &dr = foo(1.0);
13 foo(sp); // expected-error{{call to unavailable function 'foo'}}
18 int &(*fp3)(int) = foo;
19 void (*fp4)(...) = foo; // expected-error{{'foo' is unavailable}
    [all...]
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyMethod.java 9 enum AnnoFancyMethodEnum { FOO, BAR };
12 AnnoFancyMethodEnum enumerated() default AnnoFancyMethodEnum.FOO;

Completed in 8249 milliseconds

1 2