Searched refs:foo (Results 201 - 225 of 1436) sorted by relevance

1234567891011>>

/external/mesa3d/src/glsl/glcpp/tests/
H A D088-redefine-macro-legitimate.c4 #define foo(x) (x)+23 macro
5 #define foo(x) ( x ) + 23 macro
H A D007-define-composite-recursive.c1 #define foo a bar macro
3 #define baz c foo
4 foo
/external/mesa3d/src/glsl/tests/
H A Dqualifier-03.glsl2 out vec4 foo;
/external/v8/test/mjsunit/regress/
H A Dregress-1174.js38 function foo() { function
43 foo();
H A Dregress-1355.js31 var foo = Object.defineProperty({}, "bar", {
37 assertDoesNotThrow("foo.bar = 20");
41 foo.bar = 20;
H A Dregress-1383.js33 function foo(){ function
40 foo()
H A Dregress-100409.js33 function foo () {
46 return foo;
50 var foo = outer();
52 assertEquals(1, foo());
53 assertEquals(1, foo());
54 %OptimizeFunctionOnNextCall(foo);
55 assertEquals(1, foo());
H A Dregress-1387.js31 function foo() { function
36 var get1 = Object.getOwnPropertyDescriptor(foo(), "caller").get;
37 var get2 = Object.getOwnPropertyDescriptor(foo(), "callee").get;
/external/valgrind/main/exp-sgcheck/tests/
H A Dpreen_invars.stdout.exp0 foo bar 1
/external/clang/test/SemaCXX/
H A Dattr-unavailable.cpp3 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' i
[all...]
H A Dsourceranges.cpp9 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
[all...]
H A Dunknown-anytype.cpp10 extern __unknown_anytype foo;
17 int x = foo; // expected-error {{'foo' has unknown type}}
18 int y = 0 + foo; // expected-error {{'foo' has unknown type}}
19 return foo; // expected-error {{'foo' has unknown type}}
24 extern __unknown_anytype foo();
26 foo(); // expected-error {{'foo' ha
[all...]
H A Dpr13353.cpp2 struct foo { struct
6 class zed : public foo {
11 const_cast<foo *>(this->g())->bar();
/external/clang/test/CodeGen/
H A D2002-05-23-TypeNameCollision.c5 typedef struct foo { struct
6 struct foo *X;
8 } * foo; typedef in typeref:struct:foo
10 foo F1;
11 struct foo *F2;
H A Dextern-weak.c6 void foo() __attribute__((weak_import));
8 void foo() __attribute__((weak));
11 void bar() { foo(); }
/external/clang/test/Index/
H A Dblocks.c4 struct foo { long x; }; struct
7 static struct foo _foo;
9 ^ int_t(struct foo *foo) { return (int_t) foo->x + i; }(&_foo); argument
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/PCH/
H A Dcxx0x-default-delete.cpp10 struct foo { struct
11 foo() = default;
25 foo::foo() { } // expected-error{{definition of explicitly defaulted default constructor}} function in class:foo
26 foo f;
H A Dchain-empty-initial-namespace.cpp8 namespace foo {} // no external storage namespace
13 namespace foo {
21 foo::bar(); // no-error
/external/clang/test/Sema/
H A Dincomplete-call.c3 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/
H A Dp8.cpp9 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(Opaque
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp8.cpp5 int foo; local
7 (void)[foo, foo] () {}; // expected-error {{'foo' can appear only once}}
9 (void)[=, foo] () {}; // expected-error {{'&' must precede a capture when}}
10 (void)[=, &foo] () {};
12 (void)[&, foo] () {};
13 (void)[&, &foo] () {}; // expected-error {{'&' cannot precede a capture when}}
/external/clang/test/CXX/class.derived/class.virtual/
H A Dp12.cpp3 // CHECK: test12_A::foo()
5 virtual void foo();
8 test12_A::foo();
17 void foo(test24_B *xp) { function
/external/clang/test/CodeGenCXX/
H A D2004-06-08-LateTemplateInstantiation.cpp9 void foo(normal_iterator<int>);
13 foo(baz());
17 return (void*)foo;
/external/clang/test/SemaTemplate/
H A Dinstantiate-elab-type-specifier.cpp5 struct foo {}; struct in struct:Base
6 int foo; member in struct:Base
10 typedef struct Base<T>::foo type;
/external/clang/test/Analysis/
H A Dchroot.c6 void foo(void) { function
11 foo(); // expected-warning {{No call of chdir("/") immediately after chroot}}
17 foo(); // no-warning
23 foo(); // expected-warning {{No call of chdir("/") immediately after chroot}}

Completed in 1183 milliseconds

1234567891011>>