HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 1 - 25 of 4017) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
script-error.js 1 var test = document.body; variable
4 function test() { function
  /external/chromium_org/v8/test/mjsunit/
compare-nil.js 30 function test(v) { function
33 assertFalse(test(true));
34 assertFalse(test(true));
35 assertTrue(test(null));
36 assertTrue(test(null));
constant-folding-2.js 31 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(function mathExp()
    [all...]
local-load-from-eval.js 30 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); })();");
math-pow.js 31 function test() { function
144 // Test detecting and converting integer value as double.
170 test();
171 test();
172 %OptimizeFunctionOnNextCall(test);
173 test();
math-sqrt.js 30 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);
string-external-cached.js 29 // Test data pointer caching of external strings.
31 function test() { function
32 // Test string.charAt.
62 // Test regexp and short substring.
90 // Test adding external strings
114 // Run the test many times to ensure IC-s don't break things.
116 test();
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-106351.js 30 // Test Math.round with the input reused in the same expression.
31 function test(x) { function
36 for (var i = 0; i < 5; ++i) test(0.5);
37 %OptimizeFunctionOnNextCall(test);
38 test(0.5);
regress-96989.js 31 // Test correct handling of uninitialized const.
33 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/
regress-125515.js 30 function test(a) { function
35 test(a);
36 test(a);
40 test(a);
41 test(a);
regress-148378.js 30 function test() { function
32 test();
38 test();
regress-1919169.js 29 function test() { function
39 test();
regress-2234.js 30 function test(i) { function
39 test(i);
40 if (i == 0) %OptimizeFunctionOnNextCall(test);
regress-2294.js 32 function test() { function
67 test();
68 test();
69 %OptimizeFunctionOnNextCall(test);
70 test();
regress-260.js 32 function test() { eval("while(!function () { var x; });"); } function
33 test();
regress-286.js 30 function test() { function
36 assertEquals(1, test());
regress-318.js 30 function test(value) { function
35 assertDoesNotThrow('test(0)');
regress-397.js 32 function test() { function
40 test();
41 test();
42 %OptimizeFunctionOnNextCall(test);
43 test();
regress-636.js 28 function test() { function
36 assertEquals("10000000001", test());
regress-685.js 28 // Regression test for http://code.google.com/p/v8/issues/detail?id=685.
30 // Test that keyed load IC generic stub uses unsigned comparison for
33 // The test passes if it does not crash.
35 function test() { function
43 test();
regress-74.js 28 // Test that the variable introduced by catch blocks is DontDelete.
31 function test() { function
40 test();
regress-crbug-145961.js 28 // 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());
regress-phi-truncation.js 30 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(function(x)
    [all...]
regress-seqstrsetchar-ex3.js 30 function test() { function
41 test();
42 test();
43 %OptimizeFunctionOnNextCall(test);
44 test();
regress-transcendental.js 30 // Test whether the runtime implementation and generated code of
33 function test(f, x, name) { function
47 test(Math.tan, -1.57079632679489660000, "Math.tan");
48 test(Math.sin, 6.283185307179586, "Math.sin");

Completed in 170 milliseconds

1 2 3 4 5 6 7 8 91011>>