HomeSort by relevance Sort by last modified time
    Searched refs:FOO (Results 26 - 50 of 138) sorted by null

12 3 4 5 6

  /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);
33 // FOO's instantiation of X:
  /external/clang/test/Index/
complete-unterminated.c 16 #define FOO(a, b) a b
18 FOO(int, x);
complete-macros.c 3 #define FOO(Arg1,Arg2) foobar
5 #undef FOO
29 // CHECK-CC0-NOT: FOO
31 // CHECK-CC1: macro definition:{TypedText FOO}{LeftParen (}{Placeholder Arg1}{Comma , }{Placeholder Arg2}{RightParen )}
annotate-comments-preprocessor.c 34 #define FOO \
43 FOO;
  /external/clang/test/Preprocessor/
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'}}
macro_paste_empty.c 3 #define FOO(X) X ## Y
4 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...]
  /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/Lexer/
preamble.c 4 #ifndef FOO
14 int foo();
29 // CHECK-NEXT: #ifndef FOO
  /art/test/005-annotations/src/android/test/anno/
AnnoFancyMethod.java 9 enum AnnoFancyMethodEnum { FOO, BAR };
12 AnnoFancyMethodEnum enumerated() default AnnoFancyMethodEnum.FOO;
  /external/clang/test/Misc/
diag-macro-backtrace.c 3 #define FOO 1+"hi"
4 #define BAR FOO
48 // CHECK: #define BAR FOO
50 // CHECK: :3:13: note: expanded from macro 'FOO'
51 // CHECK: #define FOO 1+"hi"
55 ADD(L, foo)
57 // CHECK: ADD(L, foo)
63 // CHECK: L"foo"
  /external/llvm/test/MC/AsmParser/
line_with_hash.s 7 .ifndef FOO
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogManagerTest.java 33 private static final String FOO = "LogManagerTestFoo";
95 Logger log = new MockLogger(FOO, null);
96 Logger foo = mockManager.getLogger(FOO); local
97 assertNull("Logger should be null", foo);
99 foo = mockManager.getLogger(FOO);
100 assertSame("two loggers not refer to the same object", foo, log);
101 assertNull("logger foo should not haven parent", foo.getParent())
153 Logger foo = new MockLogger("testGetLogger_hierachy.foo", null); local
165 Logger foo = new MockLogger(FOO, null); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
syn-pred.rb 13 FOO
  /external/clang/test/ARCMT/Inputs/Module.framework/Headers/
Module.h 11 #ifdef FOO
26 __asm("foo");
  /external/clang/test/CodeCompletion/Inputs/
macros.h 1 #define FOO
  /external/vboot_reference/tests/futility/
test_dump_fmap.sh 35 "$FUTILITY" dump_fmap -x "${SCRIPTDIR}/data_fmap.bin" SI_DESC:FOO > "$TMP"
37 cmp SI_DESC FOO
51 rm -f ${TMP}* FMAP SI_DESC FOO
  /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}} \
6 // expected-note{{'foo' has been explicitly marked unavailable here}}
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...]
warn-memset-bad-sizeof.cpp 11 struct Foo {};
12 typedef const Foo& CFooRef;
13 typedef const Foo CFoo;
14 typedef volatile Foo VFoo;
15 typedef const volatile Foo CVFoo;
27 void f(Mat m, const Foo& const_foo, char *buffer) {
33 Foo foo; local
67 memset(&foo, 0, sizeof(CFoo));
68 memset(&foo, 0, sizeof(VFoo))
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t004lexer.py 28 assert token.type == self.lexerModule.FOO
34 assert token.type == self.lexerModule.FOO
40 assert token.type == self.lexerModule.FOO
43 assert token.text == 'foo', token.text
46 assert token.type == self.lexerModule.FOO
t008lexer.py 28 assert token.type == self.lexerModule.FOO
34 assert token.type == self.lexerModule.FOO
40 assert token.type == self.lexerModule.FOO
  /external/clang/test/Modules/Inputs/Module.framework/Headers/
Module.h 11 #ifdef FOO
26 __asm("foo");

Completed in 1518 milliseconds

12 3 4 5 6