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

12 3 4 5

  /external/clang/test/CodeCompletion/Inputs/
macros.h 1 #define FOO
  /external/clang/test/Preprocessor/
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...]
macro_paste_empty.c 5 #define FOO(X) X ## Y
6 a:FOO()
macro_paste_hashhash.c 9 #define FOO(x) A x B
11 FOO(##);
pragma_microsoft.c 5 #define FOO 1
8 #pragma comment(linker,"foo=" FOO) // expected-error {{pragma comment requires parenthesized identifier and optional string}}
13 #pragma comment(foo) // expected-error {{unknown kind of pragma comment}}
15 #define foo compiler macro
16 #pragma comment(foo) // macro expand kind.
17 #pragma comment(foo) x // expected-error {{pragma comment requires}}
19 #pragma comment(user, "foo\abar\nbaz\tsome thing")
52 #pragma include_alias("foo.h", <bar.h>) // expected-warning {{double-quoted include "foo.h" cannot be aliased to angle-bracketed include <bar.h>}
    [all...]
  /dalvik/tests/004-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"
  /external/llvm/test/MC/AsmParser/
line_with_hash.s 7 .ifndef FOO
  /frameworks/compile/libbcc/tests/data/src/
constants.c 1 #define FOO 0x10
6 printf("0x10 = %d\n", FOO);
  /external/clang/test/CodeGenCXX/
template-anonymous-types.cpp 4 enum { FOO = 42 };
20 // Look for two instantiations, entirely internal to this TU, one for FOO's
23 (void)f(S::FOO);
34 // FOO's instantiation of X:
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
clear.js 16 evalAndLog("storage['FOO'] = 'MyFOO'");
19 shouldBeEqualToString("storage['FOO']", "MyFOO");
24 shouldBe("storage['FOO']", "undefined"); // FIXME: Wait...shouldn't this be null?
  /external/clang/test/Index/
annotate-comments-preprocessor.c 34 #define FOO \
43 FOO;
complete-macros.c 4 #define FOO(Arg1,Arg2) foobar
30 // CHECK-CC1: macro definition:{TypedText FOO}{LeftParen (}{Placeholder Arg1}{Comma , }{Placeholder Arg2}{RightParen )}
  /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...]
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...]
  /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/Modules/Inputs/Module.framework/Headers/
Module.h 11 #ifdef FOO
  /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
  /ndk/
ndk-build.cmd 8 :FOO
14 call :FOO %NDK_ROOT%
  /external/clang/test/Analysis/
unreachable-code-path.c 3 extern void foo(int a);
15 foo(a);
24 foo(a); // expected-warning{{never executed}}
47 foo(a);
53 foo(c[0]);
95 foo(a + 5); // no-warning
97 foo(a); // no-warning
128 enum foobar { FOO, BAR };
132 case FOO:
  /external/clang/test/Parser/
warn-dangling-else.cpp 43 #define FOO(X) \
53 FOO(x) << "hello"; // no warning
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
basic-body-attribute.js 25 evalAndLog("storage.setItem('FOO', 'BAR')");
33 shouldBeEqualToString("storageEventList[0].key", "FOO");
59 evalAndLog("storage.removeItem('FOO')");
67 shouldBeEqualToString("storageEventList[5].key", "FOO");
basic-setattribute.js 25 evalAndLog("storage.setItem('FOO', 'BAR')");
33 shouldBeEqualToString("storageEventList[0].key", "FOO");
59 evalAndLog("storage.removeItem('FOO')");
67 shouldBeEqualToString("storageEventList[5].key", "FOO");

Completed in 922 milliseconds

12 3 4 5