Searched refs:foo (Results 176 - 200 of 2451) sorted by relevance

1234567891011>>

/external/lldb/test/linux/builtin_trap/
H A Dmain.cpp10 void bar(int const *foo) { argument
15 int foo = 5; local
16 bar(&foo);
/external/llvm/test/MC/ELF/
H A Dweak-relocation.s5 .weak foo
6 foo: label
8 call foo
12 // CHECK-NEXT: 0x1 R_X86_64_PC32 foo 0xFFFFFFFFFFFFFFFC
H A Dgen-dwarf.s15 .globl foo
16 .type foo, @function
18 foo: label
20 .size foo, .-foo
/external/mesa3d/src/glsl/glcpp/tests/
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/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
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)
H A D004-define-recursive.c1 #define foo bar macro
3 #define baz foo
4 foo
/external/chromium_org/v8/test/mjsunit/
H A Dconstant-compare-nil-value.js34 function foo() { function
39 assertEquals("non-null", foo());
40 assertEquals("non-null", foo());
41 %OptimizeFunctionOnNextCall(foo);
42 assertEquals("non-null", foo());
/external/chromium_org/v8/test/mjsunit/lithium/
H A DMathExp.js30 function foo(x) { function
34 foo(12.3);
35 var r1 = foo(12.3);
36 %OptimizeFunctionOnNextCall(foo);
37 var r2 = foo(12.3);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-115100.js30 function foo(obj) { obj.prop = 0; } function
33 foo(mk());
34 foo(mk());
35 %OptimizeFunctionOnNextCall(foo);
36 foo(mk());
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));
H A Dregress-346587.js11 function foo() { function
15 foo();
16 foo();
17 %OptimizeFunctionOnNextCall(foo);
18 foo();
H A Dregress-is-contextual.js30 function foo(index) { function
35 foo(0);
36 foo(0);
37 foo(100); // Accumulate feedback that index is out of bounds.
41 assertThrows(function () { foo(); }, TypeError);
H A Dregress-350884.js8 function foo(flag_index) { function
14 foo(1);
15 foo(2);
/external/clang/test/CodeGenCXX/
H A Ddebug-info-class-nolimit.cpp9 // CHECK: [ DW_TAG_structure_type ] [foo] {{.*}}[def]
10 struct foo { struct in namespace:rdar14101097_1
13 typedef foo *foop;
24 // CHECK: [ DW_TAG_structure_type ] [foo] {{.*}}[def]
25 struct foo;
27 foo *f;
29 struct foo { struct in namespace:rdar14101097_2
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...]
H A Ddebug-info-class-limited.cpp4 // CHECK-DAG: [ DW_TAG_structure_type ] [foo] [line [[@LINE+1]], {{.*}} [def]
5 struct foo { struct in namespace:PR16214_1
9 typedef foo bar;
16 // CHECK-DAG: [ DW_TAG_structure_type ] [foo] [line [[@LINE+1]], {{.*}} [def]
17 struct foo { struct in namespace:PR14467
20 foo *bar(foo *a) {
21 foo *b = new foo(*a);
27 // CHECK-DAG: [ DW_TAG_structure_type ] [foo] [lin
28 struct foo { struct in namespace:test1
42 struct foo { struct in namespace:test2
[all...]
H A Dlinetable-cleanup.cpp6 // CHECK: define {{.*}}foo
22 int foo() function
34 if (!foo())
38 if (foo()) {
40 c.i = foo();
48 if (!foo())
53 if (foo()) {
/external/clang/test/Parser/
H A Dtypes.c10 typedef struct foo { int x; } foo; typedef in typeref:struct:foo
12 foo *foo; local
13 foo->x = 0;
/external/clang/test/Sema/
H A Dwarn-sizeof-array-decay.c4 char foo[10]; local
9 (void)sizeof(foo - 20); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
11 (void)sizeof(foo + x); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
14 (void)sizeof(foo - qux); // no-warning
16 (void)sizeof(foo, x); // no-warning
17 (void)sizeof(x, foo); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
/external/clang/test/CodeGen/
H A D2002-02-13-TypeVarNameCollision.c7 typedef struct foo { struct
11 static FOO foo[100]; variable
14 return foo[4].Y;
H A D2007-04-24-VolatileStructCopy.c4 struct foo { struct
8 void copy(volatile struct foo *p, struct foo *q) {
H A D2010-01-18-Inlined-Debug.c4 static inline int foo(double) __attribute__ ((always_inline));
5 static inline int foo(double __x) { return __x; } function
8 foo(x);

Completed in 2948 milliseconds

1234567891011>>