Searched defs:test (Results 1 - 25 of 3629) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
H A Dscript-error.js1 var test = document.body; variable
4 function test() { function
/external/chromium_org/tools/gyp/test/mac/loadable-module-bundle-product-extension/
H A Dsrc.cc5 int test() { function
/external/chromium_org/v8/test/mjsunit/
H A Darray-shift2.js11 function test(array) { function
15 assertEquals(["element 1",2], test(["0",,2]));
16 assertEquals(["element 1",{}], test([{},,{}]));
17 %OptimizeFunctionOnNextCall(test);
18 assertEquals(["element 1",0], test([{},,0]));
H A Dcompare-nil.js30 function test(v) { function
33 assertFalse(test(true));
34 assertFalse(test(true));
35 assertTrue(test(null));
36 assertTrue(test(null));
H A Dconstant-fold-control-instructions.js7 function test() { function
44 test();
45 test();
46 %OptimizeFunctionOnNextCall(test);
47 test();
H A Dconstant-folding-2.js31 function test(f) { function
40 test(function add() {
51 test(function inc() {
62 test(function dec() {
73 test(function sub() {
84 test(function mul() {
96 test(function div() {
107 test(function mathMin() {
119 test(function mathMax() {
131 test(functio
[all...]
H A Ddeopt-with-fp-regs.js33 function test(a, b, c, d, e, v) { function
34 // This test expects some specific input values.
80 test(10.0, 20.0, 30.0, 40.0, 50.0, 1.5);
81 test(10.0, 20.0, 30.0, 40.0, 50.0, 1.5);
82 %OptimizeFunctionOnNextCall(test);
83 test(10.0, 20.0, 30.0, 40.0, 50.0, 1.5);
84 assertTrue(2 != %GetOptimizationStatus(test));
89 test(10.0, 20.0, 30.0, 40.0, 50.0, 1.5);
90 assertTrue(1 != %GetOptimizationStatus(test));
H A Dlocal-load-from-eval.js30 function test(source) { function
35 test("assertEquals(27, x);");
36 test("(function() { assertEquals(27, x) })();");
37 test("(function() { var y = 42; eval('1'); assertEquals(42, y); })();");
38 test("(function() { var y = 42; eval('var y = 2; var z = 2;'); assertEquals(2, y); })();");
H A Dmath-pow.js31 function test() { function
170 test();
171 test();
172 %OptimizeFunctionOnNextCall(test);
173 test();
H A Dmath-sqrt.js30 function test(expected_sqrt, value) { function
42 test(2, 4);
43 test(0.1, 0.01);
46 test(NaN, NaN);
47 test(NaN, -1);
48 test(+0, +0);
49 test(-0, -0);
50 test(Infinity, Infinity);
52 test(NaN, -Infinity);
H A Dnumber-literal.js5 function test(message, a, b, skipStrictMode) { function
15 test('hex-int', '0x20', '32');
16 test('oct-int', '040', '32', true); // Octals disallowed in strict mode.
17 test('dec-int', '32.00', '32');
18 test('dec-underflow-int', '32.00000000000000000000000000000000000000001', '32');
19 test('exp-int', '3.2e1', '32');
20 test('exp-int', '3200e-2', '32');
21 test('overflow-inf', '1e2000', 'Infinity');
22 test('overflow-inf-exact', '1.797693134862315808e+308', 'Infinity');
23 test('no
[all...]
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-106351.js31 function test(x) { function
36 for (var i = 0; i < 5; ++i) test(0.5);
37 %OptimizeFunctionOnNextCall(test);
38 test(0.5);
H A Dregress-96989.js33 function test() { function
41 for (var i=0; i<10; i++) test();
42 %OptimizeFunctionOnNextCall(test);
43 assertEquals(41, test());
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-125515.js30 function test(a) { function
35 test(a);
36 test(a);
40 test(a);
41 test(a);
H A Dregress-148378.js30 function test() { function
32 test();
38 test();
H A Dregress-1919169.js29 function test() { function
39 test();
H A Dregress-2234.js30 function test(i) { function
39 test(i);
40 if (i == 0) %OptimizeFunctionOnNextCall(test);
H A Dregress-2294.js32 function test() { function
67 test();
68 test();
69 %OptimizeFunctionOnNextCall(test);
70 test();
H A Dregress-260.js32 function test() { eval("while(!function () { var x; });"); } function
33 test();
H A Dregress-286.js30 function test() { function
36 assertEquals(1, test());
H A Dregress-318.js30 function test(value) { function
35 assertDoesNotThrow('test(0)');
H A Dregress-397.js32 function test() { function
40 test();
41 test();
42 %OptimizeFunctionOnNextCall(test);
43 test();
H A Dregress-412162.js7 function test() { function
11 test();
12 test();
13 %OptimizeFunctionOnNextCall(test);
14 test();
H A Dregress-636.js28 function test() { function
36 assertEquals("10000000001", test());
H A Dregress-685.js28 // Regression test for http://code.google.com/p/v8/issues/detail?id=685.
33 // The test passes if it does not crash.
35 function test() { function
43 test();

Completed in 2238 milliseconds

1234567891011>>