Searched refs:foo (Results 26 - 50 of 2481) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dtext-diag.c2 unsigned char *foo = "texto\ variable
/external/lldb/test/functionalities/fat_archives/
H A Da.c1 int foo () function
/external/mesa3d/src/glsl/glcpp/tests/
H A D009-undef.c1 #define foo 1 macro
2 foo
3 #undef foo macro
4 foo
H A D010-undef-re-define.c1 #define foo 1 macro
2 foo
3 #undef foo macro
4 foo
5 #define foo 2 macro
6 foo
H A D024-define-chain-to-self-recursion.c1 #define foo foo macro
2 #define bar foo
H A D032-define-func-self-recurse.c1 #define foo(a) foo(2*(a)) macro
2 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)
/external/v8/test/preparser/
H A Dstrict-octal-use-strict-after.js31 function foo() { function
H A Dstrict-octal-use-strict-before.js31 function foo() { function
H A Dstrict-with.js30 function foo() { function
/external/clang/test/PCH/
H A Dcxx0x-delegating-ctors.cpp10 struct foo { struct
11 foo(int) : foo() { } function in struct:foo
12 foo();
13 foo(bool) : foo('c') { } function in struct:foo
14 foo(char) : foo(true) { } function in struct:foo
17 foo::foo() function in class:foo
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-110509.js32 function foo() { function
37 foo();
38 foo();
39 foo();
40 %OptimizeFunctionOnNextCall(foo);
41 foo();
H A Dregress-347542.js7 function foo() {} function
8 foo();
9 %OptimizeFunctionOnNextCall(foo);
10 foo();
11 %NeverOptimizeFunction(foo);
H A Dregress-347906.js7 function foo() { function
11 foo();
12 foo();
13 %OptimizeFunctionOnNextCall(foo);
14 foo();
H A Dregress-349885.js9 function foo(a) { function
12 foo(new Array(5));
13 foo(new Array(5));
14 %OptimizeFunctionOnNextCall(foo);
15 foo(new Array(10));
H A Dregress-crbug-382513.js7 function foo() { return [+0,false].indexOf(-(4/3)); } function
8 foo();
9 foo();
10 %OptimizeFunctionOnNextCall(foo);
11 foo();
H A Dregress-2315.js30 var foo = (function() {
34 foo();
35 foo();
36 %OptimizeFunctionOnNextCall(foo);
37 foo();
39 assertOptimized(foo);
H A Dregress-352059.js28 var foo = false; variable
31 foo = 2;
32 return 4 % foo;
/external/clang/test/Misc/
H A Derror-limit-multiple-notes.cpp4 void foo(int);
5 void foo(double);
6 void foo(int, int);
7 void foo(int, int, int, int);
11 foo(1, 2, 3);
18 // CHECK: 11:5: error: no matching function for call to 'foo'
/external/v8/test/mjsunit/
H A Dstring-replace-gc.js31 var foo = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; variable
33 foo = foo + foo;
34 foo = foo + foo;
35 foo = foo + foo;
[all...]
H A Dreadonly-accessor.js5 var foo = {};
6 foo.__proto__ = new String("bar");
7 foo.length = 20;
/external/clang/test/Preprocessor/
H A Dif_warning.c6 #if foo // expected-error {{'foo' is not defined, evaluates to 0}}
9 #ifdef foo
12 #if defined(foo)
/external/clang/test/CodeGen/
H A D2002-10-12-TooManyArguments.c4 void foo() {} function
7 foo(1, 2, 3); /* Too many arguments passed */
H A D2007-02-25-C-DotDotDot.c3 // Make sure the call to foo is compiled as:
4 // call float @foo()
6 // call float (...) bitcast (float ()* @foo to float (...)*)( )
8 static float foo() { return 0.0; } function
9 // CHECK: call float @foo
10 float bar() { return foo()*10.0;}

Completed in 1709 milliseconds

1234567891011>>