HomeSort by relevance Sort by last modified time
    Searched full:fromcharcode (Results 1 - 25 of 216) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/v8/test/webkit/fast/js/kde/
encode_decode_uri-expected.txt 29 PASS decodeURI(encodeURI(String.fromCharCode(0))) is String.fromCharCode(0)
30 PASS decodeURI(encodeURI(String.fromCharCode(55295))) is String.fromCharCode(55295)
31 PASS decodeURI(encodeURI(String.fromCharCode(57344))) is String.fromCharCode(57344)
32 PASS decodeURI(encodeURI(String.fromCharCode(65533))) is String.fromCharCode(65533)
33 PASS decodeURI(encodeURI(String.fromCharCode(65534))) is String.fromCharCode(65534
    [all...]
encode_decode_uri.js 33 + "(String.fromCharCode(" + c1 + "))");
36 + "(String.fromCharCode(" + c1 + ") + String.fromCharCode(" + c2 + "))");
43 + "(String.fromCharCode(" + c1 + ")))",
44 "String.fromCharCode(" + c1 + ")");
47 + "(String.fromCharCode(" + c1 + ") + String.fromCharCode(" + c2 + ")))",
48 "String.fromCharCode(" + c1 + ") + String.fromCharCode(" + c2 + ")");
  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/
chapter-reflow-once-random.html 15 String.fromCharCode(RandomTextGenerator.firstCharCode),
16 String.fromCharCode(RandomTextGenerator.firstCharCode),
17 String.fromCharCode(RandomTextGenerator.firstCharCode),
18 String.fromCharCode(RandomTextGenerator.firstCharCode),
19 String.fromCharCode(RandomTextGenerator.firstCharCode),
20 String.fromCharCode(RandomTextGenerator.firstCharCode),
21 String.fromCharCode(RandomTextGenerator.firstCharCode),
22 String.fromCharCode(RandomTextGenerator.firstCharCode),
23 String.fromCharCode(RandomTextGenerator.firstCharCode),
24 String.fromCharCode(RandomTextGenerator.firstCharCode
    [all...]
  /external/v8/test/mjsunit/
string-fromcharcode.js 28 // Test String.fromCharCode.
31 // Test various receivers and arguments passed to String.fromCharCode.
33 Object.prototype.fromCharCode = function(x) { return this; };
35 var fcc = String.fromCharCode;
41 assertEquals(" ", String.fromCharCode(0x20));
42 assertEquals(" ", String.fromCharCode(0x20 + 0x10000));
43 assertEquals(" ", String.fromCharCode(0x20 - 0x10000));
44 assertEquals(" ", String.fromCharCode(0x20 + 0.5));
46 assertEquals("\u1234", String.fromCharCode(0x1234));
47 assertEquals("\u1234", String.fromCharCode(0x1234 + 0x10000))
    [all...]
uri.js 34 var s1 = String.fromCharCode(cc1);
36 var s2 = String.fromCharCode(cc2);
38 var s3 = String.fromCharCode(cc3);
40 var s4 = String.fromCharCode(cc4);
42 var s5 = String.fromCharCode(cc5);
44 var s6 = String.fromCharCode(cc6);
46 var s7 = String.fromCharCode(cc7);
49 var s8 = String.fromCharCode(cc8_1)+String.fromCharCode(cc8_2);
52 var s9 = String.fromCharCode(cc9_1)+String.fromCharCode(cc9_2)
    [all...]
newline-in-string.js 39 var code = "'asdf\\" + String.fromCharCode(0xD) + String.fromCharCode(0xA) + "asdf'";
43 code = "'asdf\\" + String.fromCharCode(0xA) + String.fromCharCode(0xD) + "asdf'";
escape.js 43 assertEquals("A%20B%u1234%00%20C", escape(String.fromCharCode(0x41, 0x20, 0x42, 0x1234, 0, 0x20, 0x43)));
45 assertEquals("%u0123", escape(String.fromCharCode(0x123)));
47 assertEquals("%uABCD", escape(String.fromCharCode(0xabcd)));
48 assertEquals("%AB", escape(String.fromCharCode(0xab)));
53 var s = String.fromCharCode(i);
63 var s = String.fromCharCode(i, i+1, i+2, i+3, i+4, i+5, i+6, i+7, i+8, i+9);
69 example = example + String.fromCharCode(267, 0x1234, 0x6667, 0xabcd);
71 example = example + String.fromCharCode(171, 172, 173, 174, 175, 176, 178, 179);
  /external/chromium_org/v8/test/webkit/fast/js/
string-capitalization-expected.txt 38 PASS expected[String.fromCharCode(0xA78D).toLowerCase()] is true
39 PASS expected[String.fromCharCode(0x0265).toUpperCase()] is true
40 PASS expected[String.fromCharCode(0x10C7).toLowerCase()] is true
41 PASS expected[String.fromCharCode(0x2D27).toUpperCase()] is true
42 PASS expected[String.fromCharCode(0x2D2D).toLowerCase()] is true
43 PASS expected[String.fromCharCode(0x10CD).toUpperCase()] is true
44 PASS expected[String.fromCharCode(0x2CF2).toLowerCase()] is true
45 PASS expected[String.fromCharCode(0x2CF3).toUpperCase()] is true
46 PASS expected[String.fromCharCode(0xA792).toLowerCase()] is true
47 PASS expected[String.fromCharCode(0xA793).toUpperCase()] is tru
    [all...]
regexp-no-extensions.js 35 shouldBe('/\\2147483648/.exec(String.fromCharCode(140) + "7483648").toString()', 'String.fromCharCode(140) + "7483648"');
57 shouldBe('/\\10q/.exec("y" + String.fromCharCode(8) + "q").toString()', 'String.fromCharCode(8) + "q"');
58 shouldBe('/[\\10q]/.exec("y" + String.fromCharCode(8) + "q").toString()', 'String.fromCharCode(8)');
59 shouldBe('/\\1q/.exec("y" + String.fromCharCode(1) + "q").toString()', 'String.fromCharCode(1) + "q"');
60 shouldBe('/[\\1q]/.exec("y" + String.fromCharCode(1) + "q").toString()', 'String.fromCharCode(1)')
    [all...]
string-capitalization.js 50 var s = String.fromCharCode(arguments[i]);
62 shouldBeTrue('expected[String.fromCharCode(0xA78D).toLowerCase()]');
63 shouldBeTrue('expected[String.fromCharCode(0x0265).toUpperCase()]');
78 shouldBeTrue('expected[String.fromCharCode(0x10C7).toLowerCase()]');
79 shouldBeTrue('expected[String.fromCharCode(0x2D27).toUpperCase()]');
82 shouldBeTrue('expected[String.fromCharCode(0x2D2D).toLowerCase()]');
83 shouldBeTrue('expected[String.fromCharCode(0x10CD).toUpperCase()]');
86 shouldBeTrue('expected[String.fromCharCode(0x2CF2).toLowerCase()]');
87 shouldBeTrue('expected[String.fromCharCode(0x2CF3).toUpperCase()]');
90 shouldBeTrue('expected[String.fromCharCode(0xA792).toLowerCase()]')
    [all...]
regexp-no-extensions-expected.txt 34 PASS /\2147483648/.exec(String.fromCharCode(140) + "7483648").toString() is String.fromCharCode(140) + "7483648"
54 PASS /\10q/.exec("y" + String.fromCharCode(8) + "q").toString() is String.fromCharCode(8) + "q"
55 PASS /[\10q]/.exec("y" + String.fromCharCode(8) + "q").toString() is String.fromCharCode(8)
56 PASS /\1q/.exec("y" + String.fromCharCode(1) + "q").toString() is String.fromCharCode(1) + "q"
57 PASS /[\1q]/.exec("y" + String.fromCharCode(1) + "q").toString() is String.fromCharCode(1
    [all...]
  /external/chromium_org/v8/test/mjsunit/
string-fromcharcode.js 30 // Test String.fromCharCode.
35 expected += String.fromCharCode(i);
41 result += String.fromCharCode(i);
43 assertEquals(String.fromCharCode(0xFFFF), String.fromCharCode(0xFFFFFFFF));
52 // Test various receivers and arguments passed to String.fromCharCode.
54 Object.prototype.fromCharCode = function(x) { return this; };
56 var fcc = String.fromCharCode;
62 assertEquals(" ", String.fromCharCode(0x20));
63 assertEquals(" ", String.fromCharCode(0x20 + 0x10000))
    [all...]
uri.js 34 var s1 = String.fromCharCode(cc1);
36 var s2 = String.fromCharCode(cc2);
38 var s3 = String.fromCharCode(cc3);
40 var s4 = String.fromCharCode(cc4);
42 var s5 = String.fromCharCode(cc5);
44 var s6 = String.fromCharCode(cc6);
46 var s7 = String.fromCharCode(cc7);
49 var s8 = String.fromCharCode(cc8_1)+String.fromCharCode(cc8_2);
52 var s9 = String.fromCharCode(cc9_1)+String.fromCharCode(cc9_2)
    [all...]
newline-in-string.js 39 var code = "'asdf\\" + String.fromCharCode(0xD) + String.fromCharCode(0xA) + "asdf'";
43 code = "'asdf\\" + String.fromCharCode(0xA) + String.fromCharCode(0xD) + "asdf'";
escape.js 43 assertEquals("A%20B%u1234%00%20C", escape(String.fromCharCode(0x41, 0x20, 0x42, 0x1234, 0, 0x20, 0x43)));
45 assertEquals("%u0123", escape(String.fromCharCode(0x123)));
47 assertEquals("%uABCD", escape(String.fromCharCode(0xabcd)));
48 assertEquals("%AB", escape(String.fromCharCode(0xab)));
53 var s = String.fromCharCode(i);
63 var s = String.fromCharCode(i, i+1, i+2, i+3, i+4, i+5, i+6, i+7, i+8, i+9);
69 example = example + String.fromCharCode(267, 0x1234, 0x6667, 0xabcd);
71 example = example + String.fromCharCode(171, 172, 173, 174, 175, 176, 178, 179);
string-case.js 57 str += String.fromCharCode(c);
58 strLower += String.fromCharCode(charCodeToLower(c));
59 strUpper += String.fromCharCode(charCodeToUpper(c));
  /external/chromium_org/v8/test/webkit/
parseFloat.js 26 var nonASCIINonSpaceCharacter = String.fromCharCode(0x13A0);
27 var illegalUTF16Sequence = String.fromCharCode(0xD800);
29 var tab = String.fromCharCode(9);
30 var nbsp = String.fromCharCode(0xA0);
31 var ff = String.fromCharCode(0xC);
32 var vt = String.fromCharCode(0xB);
33 var cr = String.fromCharCode(0xD);
34 var lf = String.fromCharCode(0xA);
35 var ls = String.fromCharCode(0x2028);
36 var ps = String.fromCharCode(0x2029)
    [all...]
ToNumber.js 26 var nullCharacter = String.fromCharCode(0);
27 var nonASCIICharacter = String.fromCharCode(0x100);
28 var nonASCIINonSpaceCharacter = String.fromCharCode(0x13A0);
29 var illegalUTF16Sequence = String.fromCharCode(0xD800);
31 var tab = String.fromCharCode(9);
32 var nbsp = String.fromCharCode(0xA0);
33 var ff = String.fromCharCode(0xC);
34 var vt = String.fromCharCode(0xB);
35 var cr = String.fromCharCode(0xD);
36 var lf = String.fromCharCode(0xA)
    [all...]
string-from-char-code.js 25 "This test ensures that String.fromCharCode doesn't crash."
28 shouldBe('String.fromCharCode(88)', '"X"');
  /external/chromium_org/v8/test/mjsunit/regress/
regress-seqstrsetchar-ex2.js 30 String.fromCharCode(0xFFF, 0xFFF);
31 String.fromCharCode(0x7C, 0x7C);
32 %OptimizeFunctionOnNextCall(String.fromCharCode);
33 String.fromCharCode(0x7C, 0x7C);
34 String.fromCharCode(0xFFF, 0xFFF);
regress-149.js 28 assertEquals(String.fromCharCode(0x26B), String.fromCharCode(0x2C62).toLowerCase());
regress-latin-1.js 28 assertEquals(String.fromCharCode(97, 220, 256), 'a' + '\u00DC' + '\u0100');
29 assertEquals(String.fromCharCode(97, 220, 256), 'a\u00DC\u0100');
40 var base = String.fromCharCode(i);
47 var lo = String.fromCharCode(i + 0x20);
63 assertEquals( 1, +(String.fromCharCode(0xA0) + '1') );
  /external/chromium_org/chrome_frame/test/data/
keyevent.html 13 String.fromCharCode(event.keyCode).toString());
14 input_string += String.fromCharCode(event.keyCode).toString();
window_open.html 17 var char_code = String.fromCharCode(event.keyCode);
  /external/v8/test/mjsunit/regress/
regress-149.js 28 assertEquals(String.fromCharCode(0x26B), String.fromCharCode(0x2C62).toLowerCase());

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 9