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

1 2 34 5 6 7 8 91011>>

  /external/v8/test/mjsunit/regress/
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-412162.js 7 function test() { function
11 test();
12 test();
13 %OptimizeFunctionOnNextCall(test);
14 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");
  /external/v8/test/mjsunit/
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();
string-natives.js 30 function test() { function
76 test();
77 test();
78 %OptimizeFunctionOnNextCall(test);
79 test();
string-replace-with-empty.js 30 function test() { function
61 test();
typeof.js 36 function test(x, y) { return x == y; } function
37 assertTrue(test('object', typeof r));
  /external/v8/test/webkit/fast/js/
numeric-escapes-in-string-literals.js 25 "Test numeric escapes in string literals - https://bugs.webkit.org/show_bug.cgi?id=51724"
28 function test(_stringLiteral, _nonStrictResult, _strictResult) function
45 test("\\0", "\x00", "\x00");
46 test("\\1", "\x01");
47 test("\\7", "\x07");
48 test("\\8", "8");
49 test("\\9", "9");
53 test("\\00", "\x00");
54 test("\\000", "\x00");
55 test("\\0000", "\x000")
    [all...]
  /external/v8/test/webkit/
for-in-to-text.js 28 function test() { function
34 shouldBeTrue("test.toString().match('for *[(]j *in *index[)]') != null");
regexp-negative-special-characters.js 25 "This test checks Unicode in negative RegExp character classes."
28 function test(pattern, str, expected_length) { function
38 test("\\s", " \\t\\f\\v\\r\\n", 0); // ASCII whitespace.
39 test("\\S", "????????", 0); // Cyrillic letters are non-whitespace...
40 test("\\s", "????????", 8); // ...and they aren't whitespace.
41 test("[\\s]", "????????", 8);
42 test("[\\S]", "????????", 0);
43 test("[^\\s]", "????????", 0);
44 test("[^\\S]", "????????", 8);
45 test("[\\s\\S]*", "\\u2002????????\\r\\n\\u00a0", 0)
    [all...]
sort-non-numbers.js 26 var test = [ "2", "1", "3" ]; variable
27 test.sort(function (v1, v2) {
31 shouldBe("String(test)", "'1,2,3'");
var-shadows-arg-crash.js 29 function test(a) { function
36 shouldBe('test()()', '"success"');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/
char_size.pass.cpp 21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'q', 0, S::npos);
43 test(S(""), 'q', 1, S::npos);
44 test(S("kitcj"), 'q', 0, 0);
45 test(S("qkamf"), 'q', 1, 1);
46 test(S("nhmko"), 'q', 2, 2);
47 test(S("tpsaf"), 'q', 4, 4);
48 test(S("lahfb"), 'q', 5, S::npos);
49 test(S("irkhs"), 'q', 6, S::npos)
    [all...]
pointer_size.pass.cpp 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) function
41 test(S(""), "", 0, S::npos);
42 test(S(""), "laenf", 0, S::npos);
43 test(S(""), "pqlnkmbdjo", 0, S::npos);
44 test(S(""), "qkamfogpnljdcshbreti", 0, S::npos);
45 test(S(""), "", 1, S::npos);
46 test(S(""), "bjaht", 1, S::npos);
47 test(S(""), "hjlcmgpket", 1, S::npos);
48 test(S(""), "htaobedqikfplcgjsmrn", 1, S::npos)
    [all...]
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, S::npos);
41 test(S(""), S("laenf"), 0, S::npos);
42 test(S(""), S("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), S("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), S(""), 1, S::npos);
45 test(S(""), S("bjaht"), 1, S::npos);
46 test(S(""), S("hjlcmgpket"), 1, S::npos);
47 test(S(""), S("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.of/
char_size.pass.cpp 21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'e', 0, S::npos);
43 test(S(""), 'e', 1, S::npos);
44 test(S("kitcj"), 'e', 0, S::npos);
45 test(S("qkamf"), 'e', 1, S::npos);
46 test(S("nhmko"), 'e', 2, S::npos);
47 test(S("tpsaf"), 'e', 4, S::npos);
48 test(S("lahfb"), 'e', 5, S::npos);
49 test(S("irkhs"), 'e', 6, S::npos)
    [all...]
pointer_size.pass.cpp 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) function
41 test(S(""), "", 0, S::npos);
42 test(S(""), "laenf", 0, S::npos);
43 test(S(""), "pqlnkmbdjo", 0, S::npos);
44 test(S(""), "qkamfogpnljdcshbreti", 0, S::npos);
45 test(S(""), "", 1, S::npos);
46 test(S(""), "bjaht", 1, S::npos);
47 test(S(""), "hjlcmgpket", 1, S::npos);
48 test(S(""), "htaobedqikfplcgjsmrn", 1, S::npos)
    [all...]
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, S::npos);
41 test(S(""), S("laenf"), 0, S::npos);
42 test(S(""), S("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), S("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), S(""), 1, S::npos);
45 test(S(""), S("bjaht"), 1, S::npos);
46 test(S(""), S("hjlcmgpket"), 1, S::npos);
47 test(S(""), S("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]

Completed in 824 milliseconds

1 2 34 5 6 7 8 91011>>