HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 701 - 725 of 4552) sorted by null

<<21222324252627282930>>

  /external/slf4j/log4j-over-slf4j/compatibility/src/main/java/test/
DummyObject.java 1 package test; package
Log4j12Calls.java 10 package test; package
19 * A test case that issues the typical calls
  /external/v8/test/mjsunit/compiler/
dead-string-char-from-code.js 49 function test() { function
71 test();
72 test();
76 test();
regress-3218915.js 30 // Regression test for failure to deoptimize properly when the most recent
42 function test(x) { return observe(this, ((0, side_effect()), x + 1)); } function
44 // Run test enough times to get it optimized.
45 for (var i = 0; i < 5; ++i) test(0);
46 %OptimizeFunctionOnNextCall(test);
47 test(0);
49 // Force test to deopt. If it behaves normally, it should return the global
52 assertFalse(test("a") === "wrong");
regress-gvn.js 30 // Regression test for global value numbering.
32 function test(a) { function
46 if (i == 10) %OptimizeFunctionOnNextCall(test);
48 result += test(a);
  /external/v8/test/mjsunit/
math-floor-part2.js 33 var test = new Function('n',
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
38 %OptimizeFunctionOnNextCall(test);
39 assertEquals(expect, test(input));
56 function test() { function
82 // Test in a loop to cover the custom IC and GC-related issues.
84 test();
math-floor-part3.js 33 var test = new Function('n',
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
38 %OptimizeFunctionOnNextCall(test);
39 assertEquals(expect, test(input));
56 function test() { function
84 // Test in a loop to cover the custom IC and GC-related issues.
86 test();
migrations.js 10 function test(ctor_desc, use_desc, migr_desc) { function
308 test(ctor, use, migr);
  /external/v8/test/mjsunit/regress/
regress-102153.js 30 // Test that the break point is set before initializing the loop variable
45 function test() { function
51 Debug.setBreakPoint(test, 1, 0);
53 assertTrue(Debug.showBreakPoints(test).indexOf("// Break here.") >= 0);
55 test();
regress-103259.js 34 var test = uc16; variable
35 for (var i = 0; i < 13; i++) test += test;
36 assertEquals(test, a.join(uc16));
regress-1210.js 39 function test() { function
47 for (var i = 0; i < 10; ++i) test(0);
48 %OptimizeFunctionOnNextCall(test);
49 test(0);
52 test(0);
regress-1592.js 34 function test(a) { function
39 test(1);
40 test(1);
42 %OptimizeFunctionOnNextCall(test);
45 test(1);
regress-2980.js 29 function test(expected, holder) { function
37 test(undefined, holder);
38 test(undefined, holder);
39 test(undefined, holder);
41 test("bar", holder);
42 test("bar", holder);
regress-3218530.js 34 function test() { function
39 test();
regress-643.js 28 // Regression test for http://code.google.com/p/v8/issues/detail?id=643.
31 var test = {x:1};
32 var a = test;
34 return test.x;
regress-760-1.js 35 function test() { function
48 test()
regress-760-2.js 33 function test() { function
48 test()
regress-crbug-171715.js 34 var test = 0; variable
43 test++;
44 if (test == 1) {
50 } else if (test == 2) {
57 assertEquals(3, test);
75 (function() { // Test 1 and 2
82 (function() { // Test 3
regress-crbug-242502.js 38 function test() { function
56 test();
62 var oboom = test();
regress-embedded-cons-string.js 33 print("Concurrent recompilation is disabled. Skipping this test.");
37 function test(fun) { function
68 test(f);
69 test(g);
70 test(h);
regress-swapelements.js 46 function test() { function
55 test();
  /external/v8/test/webkit/
for-in-exeception.js 24 description('Test for (foo in somethingWhichThrows) to catch ASSERT');
38 function test(func) { function
44 shouldBeUndefined("test(throwUndefinedException)");
45 shouldBeUndefined("test(throwNullException)");
46 shouldThrow("test(throwStringException)");
function-prototype-descriptor.js 25 'Test for function.prototype\'s property descriptor.'
28 function test(func) function
30 // test function.prototype has the correct attributes - writable, enumerable, non-configurable.
37 // Test prototype's attributes are correct.
39 test(a);
41 // Test prototype's attributes are correct, if assigned without first having being accessed.
44 test(b);
49 test(c);
var-shadows-arg-gc-crash.js 44 function test(a, c) { function
51 var testClosure = test();
53 var extra = test();
  /external/valgrind/memcheck/tests/
trivialleak.c 3 static void test() function
12 test();

Completed in 883 milliseconds

<<21222324252627282930>>