Searched refs:foo (Results 51 - 75 of 2451) sorted by relevance

1234567891011>>

/external/mesa3d/src/glsl/glcpp/tests/
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/chromium_org/v8/test/mjsunit/
H A Dreadonly-accessor.js5 var foo = {};
6 foo.__proto__ = new String("bar");
7 foo.length = 20;
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/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D012-define-func-no-args.c1 #define foo() bar macro
2 foo()
H A D033-define-func-self-compose.c1 #define foo(a) foo(2*(a)) macro
2 foo(foo(3))
/external/chromium_org/tools/gyp/test/ninja/solibs_avoid_relinking/
H A Dmain.cc1 extern int foo();
4 return foo();
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-3408144.js33 function foo() { function
37 assertFalse(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;}
H A D2009-07-14-VoidPtr.c4 extern void foo;
5 void *bar = &foo;
H A Ddebug-info-limited.c3 // Ensure we emit the full definition of 'foo' even though only its declaration
5 // in whatever TU actually uses/requires the definition of 'foo'.
6 // CHECK: ; [ DW_TAG_structure_type ] [foo] {{.*}} [def]
8 struct foo { struct
11 struct foo *f;
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/Profile/
H A Dc-linkage-available_externally.c6 // CHECK: @__llvm_profile_name_foo = linkonce_odr hidden constant [3 x i8] c"foo", section "__DATA,__llvm_prf_names", align 1
8 inline int foo(void) { return 1; } function
11 return 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) : function in class:foo
42 foo::foo (void*) : foo(4.0f) { function in class:foo
[all...]
/external/lldb/test/functionalities/command_script/import/
H A Ddummymodule.py1 def no_useful_code(foo):
2 return foo
/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-line-dwo.cc1 struct foo { struct
4 foo f;
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
H A Dexterndef.asm1 extern foo
2 foo: label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfglobext2.asm1 global foo
2 extern foo

Completed in 322 milliseconds

1234567891011>>