Searched defs:foo (Results 101 - 125 of 1723) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/webkit/
H A Ddfg-mul-big-integer-with-small-integer-and-bitor.js28 function foo(a) { function
33 shouldBe("foo(2147483647)", "-65536");
H A Ddfg-mul-big-integer-with-small-integer-and-detect-overflow.js28 function foo(a) { function
33 shouldBe("foo(2147483647)", "140737488289792");
H A Ddfg-mul-big-integer-with-small-integer.js28 function foo(a) { function
33 shouldBe("foo(2147483647)", "140737488289792");
H A Ddfg-mul-big-integers.js28 function foo(a, b) { function
33 shouldBe("foo(2147483647, 2147483646)", "-2147483648");
H A Ddfg-negative-array-index.js28 function foo(a, i) { function
34 foo(array, -1);
H A Ddfg-phantom-base.js28 function foo(o) { function
41 shouldBe("foo(i < 190 ? {f:42, g:{h:3}} : {f:42, g:{}})", "false");
H A Ddfg-phantom-get-local.js28 function foo(o) { function
41 shouldBe("foo(i < 190 ? {f:42, g:{h:3}} : {f:42, g:{}})", "false");
H A Ddfg-post-inc-then-exit.js28 function foo(o, i) { function
36 foo({f:o}, 0);
H A Ddfg-put-by-id-allocate-storage-polymorphic.js28 function foo(o) { function
43 o = {foo: 42};
44 foo(o);
53 shouldBe("o.foo", "42");
55 shouldBe("o.foo", "void 0");
H A Ddfg-put-by-id-allocate-storage.js28 function foo() { function
41 var o = foo();
H A Ddfg-put-by-id-reallocate-storage-polymorphic.js28 function foo(o) { function
50 o = {foo: 42};
51 foo(o);
67 shouldBe("o.foo", "42");
69 shouldBe("o.foo", "void 0");
H A Ddfg-put-by-id-reallocate-storage.js28 function foo() { function
48 var o = foo();
H A Ddfg-store-unexpected-value-into-argument-and-osr-exit.js28 function foo(x, o, p) { function
62 shouldBe("foo(3, {f:f, g:g}, p)", "" + expected);
H A Ddfg-to-string-int-or-string.js28 function foo(a) { function
35 shouldBe("\"\" + foo(i % 2 ? 42 : \"hello\")", "i % 2 ? \"42\" : \"hello\"");
H A Ddfg-to-string-int.js28 function foo(a) { function
35 shouldBe("\"\" + foo(42)", "\"42\"");
H A Ddfg-to-string-on-cell.js26 function foo(a, o) { function
31 shouldBe("\"\" + foo(\"foo\", i % 2 ? \"hello\" : [1, 2, 3])", i % 2 ? "\"foo,hello\"" : "\"foo,1,2,3\"");
H A Ddfg-to-string-on-value.js26 function foo(a, o) { function
31 shouldBe("\"\" + foo(\"foo\", i % 2 ? \"hello\" : 42)", i % 2 ? "\"foo,hello\"" : "\"foo,42\"");
H A Ddfg-to-string-side-effect.js28 function foo(a) { function
35 shouldBe("\"\" + foo({toString:function() { debug(\"hello\"); return 42; }})", "\"42\"");
H A Ddfg-to-string-toString-becomes-bad-with-check-structure.js28 function foo() { function
35 shouldBe("foo.call(new String(\"foo\"))", i >= 99 ? "\"42\"" : "\"foo\"");
H A Ddfg-uint32-to-number-in-middle-of-copy-propagation.js28 function foo(b) { function
37 shouldBe("foo(-1)", "[-1, 4294967295]");
H A Ddfg-uint32-to-number-on-captured-variable.js28 function foo(a) { function
36 shouldBe("foo(" + i + ")()", "" + i);
H A Ddfg-uint32array-overflow-constant.js28 function foo(a) { function
35 foo(array);
H A Ddfg-uint8clampedarray-out-of-bounds-put-by-val-alias.js28 function foo(a, i, v) function
37 shouldBe("foo(array, 100000000, 42)", "" + (void 0));
H A Dget-by-pname-non-final-object.js28 function foo(o) { function
67 shouldBe("foo(o)", "11");
68 shouldBe("foo(p)", "10");
69 shouldBe("foo(q)", "3467");
70 shouldBe("foo(r)", "113");
71 shouldBe("foo(s)", "182");
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dcrash-2.js26 function foo() { function
27 foo();
31 foo();

Completed in 297 milliseconds

1234567891011>>