Searched refs:foo (Results 151 - 175 of 2481) sorted by relevance

1234567891011>>

/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/v8/test/message/regress/
H A Dregress-1527.js28 var o1 = {foo: 'bar'};
31 2: o1.foo,
32 3: foo
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-126414.js28 function foo(bar) { function
31 foo(0); // Handled in runtime.
32 foo(-536870912); // Triggers bug.
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);
/external/v8/test/webkit/fast/js/kde/
H A Dcrash-2.js26 function foo() { function
27 foo();
31 foo();
/external/clang/test/CodeGenCXX/
H A Ddebug-info-class-nolimit.cpp9 // CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "foo"
12 struct foo { struct in namespace:rdar14101097_1
15 typedef foo *foop;
26 // CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "foo"
29 struct foo;
31 foo *f;
33 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 Dlinetable-cleanup.cpp6 // CHECK: define {{.*}}foo
22 int foo() function
33 if (!foo())
37 if (foo()) {
39 c.i = foo();
47 if (!foo())
52 if (foo()) {
H A Ddebug-info-template-recursive.cpp5 template <class T> class foo : public base { class in inherits:base
6 void operator=(const foo r) { }
9 class bar : public foo<void> { };
H A Dfp16-overload.cpp3 extern int foo(float x);
4 extern int foo(double x);
10 int bar (void) { return foo(a); }
/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;
H A Dcheck_cast.c2 struct foo { struct
7 struct foo xxx;
10 xxx = (struct foo)1; // expected-error {{used type 'struct foo' where arithmetic or pointer type is required}}
11 i = (int)xxx; // expected-error {{operand of type 'struct foo' where arithmetic or pointer type is required}}
/external/llvm/test/MC/ELF/
H A Dgen-dwarf.s15 .globl foo
16 .type foo, @function
18 foo: label
20 .size foo, .-foo
/external/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/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/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);
/external/lldb/test/lang/c/shared_lib/
H A Dfoo.h1 struct foo;
9 struct foo *GetMeAFoo();
10 struct sub_foo *GetMeASubFoo (struct foo *in_foo);

Completed in 1822 milliseconds

1234567891011>>