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

1234567891011>>

/external/clang/test/Sema/
H A Dtext-diag.c2 unsigned char *foo = "texto\ variable
/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)
H A D012-define-func-no-args.c1 #define foo() bar macro
2 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-3408144.js33 function foo() { function
37 assertFalse(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 Dapi-call-after-bypassed-exception.js30 function foo() { function
38 foo();
/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)
H A Dmacro_arg_keyword.c3 #define foo(return) return-return macro
5 foo(xxx)
/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;}
H A D2009-07-14-VoidPtr.c4 extern void foo;
5 void *bar = &foo;
H A Dkr-style-block.c3 void foo (void(^)());
7 foo(
/external/clang/test/CodeGenCXX/
H A Dapple-kext-no-staticinit-section.C9 class foo { class
11 foo();
12 virtual ~foo();
15 foo a;
16 foo b;
17 foo c;
18 foo::~foo() {}
/external/clang/test/SemaCXX/
H A Dcxx0x-delegating-ctors.cpp3 struct foo { struct
5 foo();
6 foo(int);
7 foo(int, int);
8 foo(bool);
9 foo(char);
10 foo(const float*);
11 foo(const float&);
12 foo(void*);
16 foo function in class:foo
19 foo::foo () : foo(-1) { function in class:foo
22 foo::foo (int, int) : foo() { function in class:foo
25 foo::foo (bool) : foo(true) { // expected-error{{creates a delegation cycle}} function in class:foo
29 foo::foo (const float* f) : foo(*f) { // expected-note{{it delegates to}} function in class:foo
32 foo::foo (const float &f) : foo(&f) { //expected-error{{creates a delegation cycle}} \\ function in class:foo
36 foo::foo (char) : i(3), foo(3) { // expected-error{{must appear alone}} function in class:foo
40 foo::foo (void*) : foo(4.0f) { function in class:foo
[all...]
/external/clang/test/Analysis/
H A Dstats.c3 void foo() { function

Completed in 389 milliseconds

1234567891011>>