OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fromCharCode
(Results
1 - 2
of
2
) sorted by null
/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
...]
/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
...]
Completed in 550 milliseconds