Searched refs:foo (Results 101 - 125 of 1436) sorted by relevance

1234567891011>>

/external/mesa3d/src/glsl/glcpp/tests/
H A D055-define-chain-obj-to-func-parens-in-text.c2 #define foo failure macro
3 foo()
H A D060-left-paren-in-macro-right-paren-in-text.c2 #define foo double( macro
3 foo 5)
H A D062-if-0-skips-garbage.c1 #define foo(a,b) macro
3 foo(bar)
4 foo(
H A D050-if-defined.c1 #if defined foo
6 #define foo macro
7 #if defined foo
12 #undef foo macro
13 #if defined foo
H A D065-if-defined-parens.c1 #if defined(foo)
6 #define foo macro
7 #if defined ( foo )
12 #undef foo macro
13 #if defined (foo)
/external/mesa3d/src/glsl/tests/
H A Dqualifier-02.glsl2 in foo;
/external/v8/test/mjsunit/regress/
H A Dregress-220.js28 function foo(f) { eval(f); } function
31 foo("(function (x) { with ({x: []}) function x(){} })");
H A Dregress-794.js30 function foo() {} function
31 assertFalse("prototype" in foo.bind());
H A Dregress-874178.js28 function foo(){} function
29 assertTrue(Function.prototype.isPrototypeOf(foo));
31 foo.bar = 'hello';
32 assertTrue(foo.propertyIsEnumerable('bar'));
H A Dregress-crbug-126414.js28 function foo(bar) { function
31 foo(0); // Handled in runtime.
32 foo(-536870912); // Triggers bug.
H A Dregress-1476.js30 function foo (i) { return (i % 2) | 0; } function
32 assertEquals (-1, foo(-1));
33 assertEquals (-1, foo(-1));
34 %OptimizeFunctionOnNextCall(foo);
35 assertEquals (-1, foo(-1));
/external/clang/test/SemaCXX/
H A Ddefaulted-ctor-loop.cpp5 struct foo;
7 bar(foo&);
9 struct foo { struct
11 foo() function in struct:foo
H A DPR8884.cpp4 friend struct foo;
5 static struct foo& baz ();
7 struct foo { struct
H A Dwarn-bool-conversion.cpp5 void foo(int* i, int *j=(false)) // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}} function
7 foo(false); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
8 foo((int*)false); // no-warning: explicit cast
9 foo(0); // no-warning: not a bool, even though its convertible to bool
11 foo(false == true); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
12 foo((42 + 24) < 32); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
15 foo(kFlag); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
/external/clang/test/CodeGen/
H A D2002-04-07-SwitchStmt.c4 int foo();
7 while (foo()) {
8 switch (foo()) {
H A D2003-08-20-PrototypeMismatch.c5 static int foo(int);
7 static int foo(C) function
14 foo(7);
H A D2003-08-23-LocalUnionTest.c5 union foo { int X; }; union
7 int test(union foo* F) {
9 union foo { float X; } A; union
/external/clang/test/PCH/
H A Dreinclude1.h6 int foo; variable
7 #define foo foo macro
/external/llvm/test/MC/ELF/
H A Dweak-relocation.s5 .weak foo
6 foo: label
8 call foo
H A Dgen-dwarf.s9 .globl foo
10 .type foo, @function
12 foo: label
14 .size foo, .-foo
/external/v8/test/message/regress/
H A Dregress-1527.js28 var o1 = {foo: 'bar'};
31 2: o1.foo,
32 3: foo
/external/clang/test/Misc/
H A Ddiag-template-diffing-color.cpp4 template<typename> struct foo {}; struct
5 void func(foo<int>);
7 func(foo<double>());
9 // CHECK: {{.*}}candidate function not viable: no known conversion from 'foo<{{.}}[0;1;36mdouble{{.}}[0m>' to 'foo<{{.}}[0;1;36mint{{.}}[0m>' for 1st argument{{.}}[0m
11 // TREE: foo<
14 foo<int> A;
15 foo<double> &B = A;
16 // CHECK: {{.*}}non-const lvalue reference to type 'foo<{{.}}[0;1;36mdouble{{.}}[0m{{.}}[1m>' cannot bind to a value of unrelated type 'foo<{{
[all...]
/external/clang/test/Parser/
H A Dtypes.c9 typedef struct foo { int x; } foo; typedef in typeref:struct:foo
11 foo *foo; local
12 foo->x = 0;
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp11.cpp14 namespace ns { void foo(); } // expected-note {{target of using declaration}}
15 int foo(void); // expected-note {{conflicting declaration}}
16 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
20 namespace ns { void foo(); } // expected-note {{target of using declaration}}
21 using ns::foo; //expected-note {{using declaration}}
22 int foo(void); // expected-error {{declaration conflicts with target of using declaration already in scope}}
26 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
28 int foo(void); // expected-note {{conflicting declaration}}
29 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
33 using ns::foo; //expecte
[all...]
/external/clang/test/CodeGenCXX/
H A Dweak-extern-typeinfo.cpp7 virtual void foo();
11 virtual void foo();
13 void A::foo() { } function in class:A
14 void B::foo() { } function in class:B
20 virtual void foo();
22 void C::foo() { } function in class:C
25 virtual void foo();
29 virtual void foo();
31 void V1::foo() { } function in class:V1
32 void V2::foo() { } function in class:V2
[all...]

Completed in 271 milliseconds

1234567891011>>