Searched defs:test (Results 1 - 25 of 2165) 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/v8/test/mjsunit/
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-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 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 Dstring-external-cached.js31 function test() { function
114 // Run the test many times to ensure IC-s don't break things.
116 test();
/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-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();
H A Dregress-74.js31 function test() { function
40 test();
H A Dregress-crbug-145961.js28 // This test causes the operands to be passed in as Integer32 registers.
30 function test() { function
36 assertEquals(0, test());
37 assertEquals(0, test());
38 %OptimizeFunctionOnNextCall(test);
39 assertEquals(0, test());
H A Dregress-phi-truncation.js30 function test(fun, expectation) { function
36 test(function(x) {
41 test(function(x) {
46 test(function(x) {
51 test(function(x) {
56 test(function(x) {
61 test(function(x) {
66 test(function(x) {
71 test(function(x) {
76 test(functio
[all...]
H A Dregress-seqstrsetchar-ex3.js30 function test() { function
41 test();
42 test();
43 %OptimizeFunctionOnNextCall(test);
44 test();
H A Dregress-transcendental.js33 function test(f, x, name) { function
47 test(Math.tan, -1.57079632679489660000, "Math.tan");
48 test(Math.sin, 6.283185307179586, "Math.sin");

Completed in 197 milliseconds

1234567891011>>