/external/llvm/test/FrontendC/ |
2010-02-15-DbgStaticVar.c | 4 static int foo(int a) function 11 int j = foo(1);
|
2010-06-28-DbgLocalVar.c | 5 // Code is not generated for function foo, but preserve type information of 7 static foo() { function 12 foo();
|
always-inline.c | 1 // RUN: %llvmgcc -S %s -o - | grep call | not grep foo 6 inline void __attribute__((__always_inline__)) foo() { function 11 foo();
|
2002-05-23-TypeNameCollision.c | 5 typedef struct foo { struct 6 struct foo *X; 8 } * foo; typedef in typeref:struct:foo 10 foo F1; 11 struct foo *F2;
|
/external/llvm/test/FrontendC++/ |
member-alignment.cpp | 8 virtual void foo(void); 18 t::foo(void) { function in class:t
|
/external/llvm/test/MC/ELF/ |
pic-diff.s | 27 foo: label 29 .long baz - foo
|
plt.s | 5 jmp foo@PLT
|
weak.s | 5 .weak foo 6 .long foo 22 //CHECK: (('st_name', 0x00000001) # 'foo'
|
/external/mesa3d/src/glsl/glcpp/tests/ |
014-define-func-2-arg-unused.c | 1 #define foo(x,y) 1 macro 2 foo(bar,baz)
|
017-define-func-2-args.c | 1 #define foo(x,y) ((x)*(y)) macro 2 foo(bar,baz)
|
021-define-func-compose.c | 2 #define foo(y) (2*(y)) macro 3 foo(bar(3))
|
029-define-chain-obj-to-func-with-args.c | 2 #define foo bar(success) macro 3 foo
|
036-define-func-non-macro-multi-token-argument.c | 2 #define foo(x) x macro 3 foo(more bar)
|
039-func-arg-obj-macro-with-comma.c | 1 #define foo(a) (a) macro 3 foo(bar)
|
088-redefine-macro-legitimate.c | 4 #define foo(x) (x)+23 macro 5 #define foo(x) ( x ) + 23 macro
|
/external/mesa3d/src/glsl/tests/ |
qualifier-03.glsl | 2 out vec4 foo;
|
/external/valgrind/main/exp-ptrcheck/tests/ |
preen_invars.stdout.exp | 0 foo bar 1
|
/ndk/tests/build/build-assembly-file/jni/ |
assembly1.s | 1 .global foo 2 foo: label
|
/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...] |
sourceranges.cpp | 9 namespace foo { namespace 16 // CHECK: CXXNewExpr {{0x[0-9a-fA-F]+}} <col:19, col:28> 'foo::A *' 17 P<foo::A> p14 = new foo::A; 18 // CHECK: CXXNewExpr {{0x[0-9a-fA-F]+}} <col:19, col:28> 'foo::B *' 19 P<foo::B> p24 = new foo::B; 20 // CHECK: CXXNewExpr {{0x[0-9a-fA-F]+}} <col:19, col:28> 'foo::C *' 21 P<foo::C> pr4 = new foo::C [all...] |
/external/clang/test/Index/ |
blocks.c | 4 struct foo { long x; }; struct 7 static struct foo _foo; 9 ^ int_t(struct foo *foo) { return (int_t) foo->x + i; }(&_foo); 16 // CHECK: blocks.c:7:17: TypeRef=struct foo:4:8 Extent=[7:17 - 7:20] 22 // CHECK: blocks.c:9:23: ParmDecl=foo:9:23 (Definition) Extent=[9:11 - 9:26] 23 // CHECK: blocks.c:9:18: TypeRef=struct foo:4:8 Extent=[9:18 - 9:21] 30 // CHECK: blocks.c:9:45: DeclRefExpr=foo:9:23 Extent=[9:45 - 9:48]
|
/external/clang/test/Sema/ |
incomplete-call.c | 3 struct foo; // expected-note 3 {{forward declaration of 'struct foo'}} 5 struct foo a(); // expected-note {{'a' declared here}} 6 void b(struct foo); 10 a(); // expected-error{{calling 'a' with incomplete return type 'struct foo'}} 11 b(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}} 12 c(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p8.cpp | 9 void foo(Opaque0); // expected-note 2 {{candidate function}} 12 using ns::foo; 13 using ns::foo; 16 foo(Opaque1()); // expected-error {{no matching function for call}} 20 void foo(Opaque1); 24 foo(Opaque1()); // expected-error {{no matching function for call}} 27 using ns::foo; 30 foo(Opaque1()); 33 using ns::foo; 39 void foo(Opaque0); // expected-note 2 {{candidate function} [all...] |
/external/webkit/LayoutTests/fast/url/script-tests/ |
segments.js | 5 ["http://user:pass@foo:21/bar;par?b#c", ["http:","foo","21","/bar;par","?b","#c"]], 6 ["http:foo.com", ["http:","example.org","0","/foo/foo.com","",""]], 7 ["\\t :foo.com \\n", ["http:","example.org","0","/foo/:foo.com","",""]], 8 [" foo.com ", ["http:","example.org","0","/foo/foo.com","",""]] [all...] |
/external/clang/test/CXX/class.derived/class.virtual/ |
p12.cpp | 3 // CHECK: test12_A::foo() 5 virtual void foo(); 8 test12_A::foo(); 17 void foo(test24_B *xp) { function
|