Searched defs:foo (Results 51 - 75 of 776) sorted by relevance

1234567891011>>

/external/mesa3d/src/glsl/glcpp/tests/
H A D019-define-func-1-arg-multi.c1 #define foo(x) (x) macro
2 foo(this is more than one word)
H A D020-define-func-2-arg-multi.c1 #define foo(x,y) x,two fish,red fish,y macro
2 foo(one fish, blue fish)
H A D022-define-func-arg-with-parens.c1 #define foo(x) (x) macro
2 foo(argument(including parens)for the win)
H A D025-func-macro-as-non-macro.c1 #define foo(bar) bar macro
2 foo bar
H A D026-define-func-extra-newlines.c1 #define foo(a) bar macro
3 foo
H A D032-define-func-self-recurse.c1 #define foo(a) foo(2*(a)) macro
2 foo(3)
H A D033-define-func-self-compose.c1 #define foo(a) foo(2*(a)) macro
2 foo(foo(3))
H A D034-define-func-self-compose-non-func.c1 #define foo(bar) bar macro
2 foo(foo)
H A D035-define-func-self-compose-non-func-multi-token-argument.c1 #define foo(bar) bar macro
2 foo(1+foo)
H A D038-func-arg-with-commas.c1 #define foo(x) success macro
2 foo(argument (with,embedded , commas) -- tricky)
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 D062-if-0-skips-garbage.c1 #define foo(a,b) macro
3 foo(bar)
4 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/v8/test/mjsunit/
H A Dapi-call-after-bypassed-exception.js30 function foo() { function
38 foo();
H A Dmod.js28 function foo() { function
53 foo();
H A Dobject-prevent-extensions.js109 function foo() { function
113 Object.preventExtensions(foo);
115 foo.x = 29;
116 assertEquals(undefined, foo.x);
H A Dcontext-variable-assignments.js28 function foo() { function
37 assertEquals("hello world", foo());
/external/v8/test/mjsunit/compiler/
H A Dregress-lbranch-double.js33 function foo() { function
37 assertEquals(88, foo());
38 assertEquals(88, foo());
39 %OptimizeFunctionOnNextCall(foo)
40 assertEquals(88, foo());
/external/v8/test/mjsunit/regress/
H A Dregress-1117.js31 function foo(y) {return 0 * y; } function
33 foo(42);
35 assertEquals(1/foo(-42), -Infinity);
H A Dregress-155924.js34 function foo() { function
44 assertEquals(undefined, foo(), "First lookup A[bad_float]");
45 assertEquals(undefined, foo(), "Second lookup A[bad_float]");
46 assertEquals(undefined, foo(), "Third lookup A[bad_float]");
H A Dregress-220.js28 function foo(f) { eval(f); } function
31 foo("(function (x) { with ({x: []}) function x(){} })");
H A Dregress-3408144.js33 function foo() { function
37 assertFalse(foo());
H A Dregress-806.js32 function foo(a) { function
40 var z = a.foo;
41 z.foo = i * j * k * m * n * o;
51 foo({foo: {foo: 1}});
H A Dregress-874178.js28 function foo(){} function
29 assertTrue(Function.prototype.isPrototypeOf(foo));
31 foo.bar = 'hello';
32 assertTrue(foo.propertyIsEnumerable('bar'));
/external/clang/test/CodeGenCXX/
H A Dvirt-dtor-key.cpp3 class foo { class
4 foo();
5 virtual ~foo();
8 foo::~foo() {

Completed in 185 milliseconds

1234567891011>>