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

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
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-1337.js34 function foo() { bar(); } function
37 try { foo() } catch (e) { }
39 %OptimizeFunctionOnNextCall(foo)
40 try { foo() } catch (e) { }
H A Dregress-builtin-array-op.js31 var foo = "hest"; variable
32 Array.prototype.sort = function(fn) { foo = "fisk"; };
33 Function.prototype.call = function() { foo = "caramel"; };
37 assertEquals("hest", foo);
/external/clang/test/CodeGenCXX/
H A Ddebug-info-class-nolimit.cpp7 // CHECK: [ DW_TAG_structure_type ] [foo] {{.*}}[def]
8 struct foo { struct in namespace:rdar14101097_1
11 typedef foo *foop;
22 // CHECK: [ DW_TAG_structure_type ] [foo] {{.*}}[def]
23 struct foo;
25 foo *f;
27 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())
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.s10 .globl foo
11 .type foo, @function
13 foo: label
15 .size foo, .-foo
/external/mesa3d/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/v8/test/mjsunit/regress/
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-1117.js31 function foo(y) {return 0 * y; } function
33 foo(42);
35 assertEquals(1/foo(-42), -Infinity);
/external/clang/test/SemaCXX/
H A Dwarn-bool-conversion.cpp5 void foo(int* i, int *j=(false)) // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}} function
7 foo(false); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
8 foo((int*)false); // no-warning: explicit cast
9 foo(0); // no-warning: not a bool, even though its convertible to bool
11 foo(false == true); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
12 foo((42 + 24) < 32); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
15 foo(kFlag); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp11.cpp14 namespace ns { void foo(); } // expected-note {{target of using declaration}}
15 int foo(void); // expected-note {{conflicting declaration}}
16 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
20 namespace ns { void foo(); } // expected-note {{target of using declaration}}
21 using ns::foo; //expected-note {{using declaration}}
22 int foo(void); // expected-error {{declaration conflicts with target of using declaration already in scope}}
26 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
28 int foo(void); // expected-note {{conflicting declaration}}
29 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
33 using ns::foo; //expecte
[all...]
/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/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D004-define-recursive.c1 #define foo bar macro
3 #define baz foo
4 foo
/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/llvm/test/DebugInfo/AArch64/
H A Deh_frame.s4 .globl foo
5 .type foo,@function
6 foo: label

Completed in 1147 milliseconds

1234567891011>>