| /external/chromium_org/v8/test/webkit/ |
| dfg-inline-arguments-use-from-all-the-places-broken.js | 28 function foo(o,b,c) { function 29 return [foo.arguments, bar.arguments].concat(o.f); 33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments]; 37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56)); 44 return [bar.arguments].concat(foo(o,b,c));
|
| dfg-inline-arguments-use-from-all-the-places.js | 28 function foo(o,b,c) { function 29 return [foo.arguments, bar.arguments].concat(o.f); 33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments]; 37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56)); 44 return [bar.arguments].concat(foo(o,b,c));
|
| dfg-inline-arguments-use-from-uninlined-code.js | 28 function foo() { function 37 return foo(a,b,c);
|
| dfg-to-string-toString-becomes-bad.js | 28 function foo(a) { function 40 shouldBe("\"\" + foo(\"hello\")", expected);
|
| dfg-uint32-to-number-skip-then-exit.js | 28 function foo(a, b, o) { function 43 shouldBe("foo(i, 1, o)", "" + expected);
|
| /external/chromium_org/v8/test/webkit/fast/js/ |
| array-slow-put.js | 31 function foo() { function 40 shouldBe("\"" + foo().join(",") + "\"", "\"0,1,2,,4\"");
|
| object-slow-put.js | 34 function foo() { function 43 shouldBe("\"" + Array.prototype.join.apply(foo(), [","]) + "\"", "\"0,1,2,,4\"");
|
| /external/clang/test/Analysis/ |
| debug-CallGraph.c | 9 static int foo(int x, int y) { function 17 foo(1,2); 23 foo(x, y); 28 // CHECK: Function: < root > calls: mmm foo aaa < > bbb 30 // CHECK: Function: < > calls: foo 31 // CHECK: Function: aaa calls: foo 32 // CHECK: Function: foo calls: mmm
|
| /external/clang/test/CXX/class/class.friend/ |
| p1-ambiguous.cpp | 10 class foo; 13 int c_func(foo *a); 15 int cpp_func(foo *a); 17 class foo { class 19 friend int c_func(foo *a); 20 friend int cpp_func(foo *a); 26 int c_func(foo *a) { 30 int cpp_func(foo *a) { 34 int foo::caller() {
|
| /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
| p8.cpp | 5 int foo; local 7 (void)[foo, foo] () {}; // expected-error {{'foo' can appear only once}} 9 (void)[=, foo] () {}; // expected-error {{'&' must precede a capture when}} 10 (void)[=, &foo] () {}; 12 (void)[&, foo] () {}; 13 (void)[&, &foo] () {}; // expected-error {{'&' cannot precede a capture when}}
|
| /external/clang/test/CodeCompletion/ |
| ordinary-name.cpp | 5 void foo() { function 22 // CHECK-CC1-NEXT: COMPLETION: foo : [#void#]foo() 148 // CHECK-CC4-NEXT: COMPLETION: foo : [#void#]foo() 192 // CHECK-NO-RTTI-NEXT: COMPLETION: foo : [#void#]foo()
|
| /external/clang/test/CodeGen/ |
| 2002-02-13-TypeVarNameCollision.c | 7 typedef struct foo { struct 9 } FOO; 11 static FOO foo[100]; variable 14 return foo[4].Y;
|
| 2003-08-18-StructAsValue.c | 9 event_t foo = { 1 }, bar = { 2 }; local 10 return X ? foo : bar;
|
| 2003-08-29-StructLayoutBug.c | 3 struct foo { struct 9 void test(struct foo *X) {}
|
| 2003-08-30-LargeIntegerBitfieldMember.c | 3 struct foo { struct 9 struct foo F;
|
| 2004-08-06-LargeStructTest.c | 10 struct foo { struct 17 int test(struct foo *F) {
|
| 2007-04-11-InlineAsmUnion.c | 4 void foo() { function 6 __asm__ volatile("foo %0\n" : "=r"(bar));
|
| 2007-04-13-InlineAsmUnion2.c | 4 void foo() { function 7 __asm__ volatile("foo %0\n" :: "r"(bar));
|
| 2007-05-07-PaddingElements.c | 9 struct s foo(void) { function
|
| 2007-06-15-AnnotateAttribute.c | 8 int foo(int y) __attribute__((annotate("GlobalValAnnotation"))) 11 int foo(int y __attribute__((annotate("LocalValAnnotation")))) { function 19 a = foo(2);
|
| 2007-09-27-ComplexIntCompare.c | 8 struct s __attribute__((noinline)) foo (void) { return gs; } function 12 if (foo ().x != gs.x)
|
| 2008-05-12-TempUsedBeforeDef.c | 3 unsigned foo = 8L; variable 9 bork(bar && foo, qux);
|
| 2008-07-22-packed-bitfield-access.c | 4 struct foo { struct
|
| annotations-field.c | 7 struct foo { struct 11 static struct foo gf; 14 struct foo f; 16 // CHECK: getelementptr inbounds %struct.foo* %f, i32 0, i32 0 24 // CHECK: bitcast i32* getelementptr inbounds (%struct.foo* @gf, i32 0, i32 0) to i8*
|
| annotations-var.c | 17 int foo(int v __attribute__((annotate("param_ann_2"))) __attribute__((annotate("param_ann_3")))); 18 int foo(int v __attribute__((annotate("param_ann_0"))) __attribute__((annotate("param_ann_1")))) { function 20 // PARAM: define {{.*}}@foo
|