Lines Matching refs:call
30 PASS Number.prototype.toString.call(0) is "0"
31 PASS Number.prototype.toString.call(new Number(0)) is "0"
35 PASS Number.prototype.toString.call(0, 2) is "0"
36 PASS Number.prototype.toString.call(new Number(0), 2) is "0"
38 PASS Number.prototype.toString.call(0, 36) is "0"
39 PASS Number.prototype.toString.call(new Number(0), 36) is "0"
41 PASS Number.prototype.toString.call(-1) is "-1"
42 PASS Number.prototype.toString.call(new Number(-1)) is "-1"
46 PASS Number.prototype.toString.call(-1, 2) is "-1"
47 PASS Number.prototype.toString.call(new Number(-1), 2) is "-1"
49 PASS Number.prototype.toString.call(-1, 36) is "-1"
50 PASS Number.prototype.toString.call(new Number(-1), 36) is "-1"
52 PASS Number.prototype.toString.call(1) is "1"
53 PASS Number.prototype.toString.call(new Number(1)) is "1"
57 PASS Number.prototype.toString.call(1, 2) is "1"
58 PASS Number.prototype.toString.call(new Number(1), 2) is "1"
60 PASS Number.prototype.toString.call(1, 36) is "1"
61 PASS Number.prototype.toString.call(new Number(1), 36) is "1"
63 PASS Number.prototype.toString.call(1984) is "1984"
64 PASS Number.prototype.toString.call(new Number(1984)) is "1984"
68 PASS Number.prototype.toString.call(1984, 2) is "11111000000"
69 PASS Number.prototype.toString.call(new Number(1984), 2) is "11111000000"
71 PASS Number.prototype.toString.call(1984, 36) is "1j4"
72 PASS Number.prototype.toString.call(new Number(1984), 36) is "1j4"
74 PASS Number.prototype.toString.call(-1984) is "-1984"
75 PASS Number.prototype.toString.call(new Number(-1984)) is "-1984"
79 PASS Number.prototype.toString.call(-1984, 2) is "-11111000000"
80 PASS Number.prototype.toString.call(new Number(-1984), 2) is "-11111000000"
82 PASS Number.prototype.toString.call(-1984, 36) is "-1j4"
83 PASS Number.prototype.toString.call(new Number(-1984), 36) is "-1j4"
85 PASS Number.prototype.toString.call(2147483647) is "2147483647"
86 PASS Number.prototype.toString.call(new Number(2147483647)) is "2147483647"
90 PASS Number.prototype.toString.call(2147483647, 2) is "1111111111111111111111111111111"
91 PASS Number.prototype.toString.call(new Number(2147483647), 2) is "1111111111111111111111111111111"
93 PASS Number.prototype.toString.call(2147483647, 36) is "zik0zj"
94 PASS Number.prototype.toString.call(new Number(2147483647), 36) is "zik0zj"
96 PASS Number.prototype.toString.call(-2147483648) is "-2147483648"
97 PASS Number.prototype.toString.call(new Number(-2147483648)) is "-2147483648"
101 PASS Number.prototype.toString.call(-2147483648, 2) is "-10000000000000000000000000000000"
102 PASS Number.prototype.toString.call(new Number(-2147483648), 2) is "-100000000000000000000000000000…
104 PASS Number.prototype.toString.call(-2147483648, 36) is "-zik0zk"
105 PASS Number.prototype.toString.call(new Number(-2147483648), 36) is "-zik0zk"
107 PASS Number.prototype.toString.call(9007199254740992) is "9007199254740992"
108 PASS Number.prototype.toString.call(new Number(9007199254740992)) is "9007199254740992"
112 PASS Number.prototype.toString.call(9007199254740992, 2) is "10000000000000000000000000000000000000…
113 PASS Number.prototype.toString.call(new Number(9007199254740992), 2) is "10000000000000000000000000…
115 PASS Number.prototype.toString.call(9007199254740992, 36) is "2gosa7pa2gw"
116 PASS Number.prototype.toString.call(new Number(9007199254740992), 36) is "2gosa7pa2gw"
118 PASS Number.prototype.toString.call(-9007199254740992) is "-9007199254740992"
119 PASS Number.prototype.toString.call(new Number(-9007199254740992)) is "-9007199254740992"
123 PASS Number.prototype.toString.call(-9007199254740992, 2) is "-100000000000000000000000000000000000…
124 PASS Number.prototype.toString.call(new Number(-9007199254740992), 2) is "-100000000000000000000000…
126 PASS Number.prototype.toString.call(-9007199254740992, 36) is "-2gosa7pa2gw"
127 PASS Number.prototype.toString.call(new Number(-9007199254740992), 36) is "-2gosa7pa2gw"
129 PASS Number.prototype.toString.call(0) is "0"
130 PASS Number.prototype.toString.call(new Number(0)) is "0"
134 PASS Number.prototype.toString.call(0, 2) is "0"
135 PASS Number.prototype.toString.call(new Number(0), 2) is "0"
137 PASS Number.prototype.toString.call(0, 36) is "0"
138 PASS Number.prototype.toString.call(new Number(0), 36) is "0"
140 PASS Number.prototype.toString.call(-1) is "-1"
141 PASS Number.prototype.toString.call(new Number(-1)) is "-1"
145 PASS Number.prototype.toString.call(-1, 2) is "-1"
146 PASS Number.prototype.toString.call(new Number(-1), 2) is "-1"
148 PASS Number.prototype.toString.call(-1, 36) is "-1"
149 PASS Number.prototype.toString.call(new Number(-1), 36) is "-1"
151 PASS Number.prototype.toString.call(1) is "1"
152 PASS Number.prototype.toString.call(new Number(1)) is "1"
156 PASS Number.prototype.toString.call(1, 2) is "1"
157 PASS Number.prototype.toString.call(new Number(1), 2) is "1"
159 PASS Number.prototype.toString.call(1, 36) is "1"
160 PASS Number.prototype.toString.call(new Number(1), 36) is "1"
162 PASS Number.prototype.toString.call(1984) is "1984"
163 PASS Number.prototype.toString.call(new Number(1984)) is "1984"
167 PASS Number.prototype.toString.call(1984, 2) is "11111000000"
168 PASS Number.prototype.toString.call(new Number(1984), 2) is "11111000000"
170 PASS Number.prototype.toString.call(1984, 36) is "1j4"
171 PASS Number.prototype.toString.call(new Number(1984), 36) is "1j4"
173 PASS Number.prototype.toString.call(-1984) is "-1984"
174 PASS Number.prototype.toString.call(new Number(-1984)) is "-1984"
178 PASS Number.prototype.toString.call(-1984, 2) is "-11111000000"
179 PASS Number.prototype.toString.call(new Number(-1984), 2) is "-11111000000"
181 PASS Number.prototype.toString.call(-1984, 36) is "-1j4"
182 PASS Number.prototype.toString.call(new Number(-1984), 36) is "-1j4"
184 PASS Number.prototype.toString.call(2147483647) is "2147483647"
185 PASS Number.prototype.toString.call(new Number(2147483647)) is "2147483647"
189 PASS Number.prototype.toString.call(2147483647, 2) is "1111111111111111111111111111111"
190 PASS Number.prototype.toString.call(new Number(2147483647), 2) is "1111111111111111111111111111111"
192 PASS Number.prototype.toString.call(2147483647, 36) is "zik0zj"
193 PASS Number.prototype.toString.call(new Number(2147483647), 36) is "zik0zj"
195 PASS Number.prototype.toString.call(-2147483648) is "-2147483648"
196 PASS Number.prototype.toString.call(new Number(-2147483648)) is "-2147483648"
200 PASS Number.prototype.toString.call(-2147483648, 2) is "-10000000000000000000000000000000"
201 PASS Number.prototype.toString.call(new Number(-2147483648), 2) is "-100000000000000000000000000000…
203 PASS Number.prototype.toString.call(-2147483648, 36) is "-zik0zk"
204 PASS Number.prototype.toString.call(new Number(-2147483648), 36) is "-zik0zk"
206 PASS Number.prototype.toString.call(9007199254740992) is "9007199254740992"
207 PASS Number.prototype.toString.call(new Number(9007199254740992)) is "9007199254740992"
211 PASS Number.prototype.toString.call(9007199254740992, 2) is "10000000000000000000000000000000000000…
212 PASS Number.prototype.toString.call(new Number(9007199254740992), 2) is "10000000000000000000000000…
214 PASS Number.prototype.toString.call(9007199254740992, 36) is "2gosa7pa2gw"
215 PASS Number.prototype.toString.call(new Number(9007199254740992), 36) is "2gosa7pa2gw"
217 PASS Number.prototype.toString.call(-9007199254740992) is "-9007199254740992"
218 PASS Number.prototype.toString.call(new Number(-9007199254740992)) is "-9007199254740992"
222 PASS Number.prototype.toString.call(-9007199254740992, 2) is "-100000000000000000000000000000000000…
223 PASS Number.prototype.toString.call(new Number(-9007199254740992), 2) is "-100000000000000000000000…
225 PASS Number.prototype.toString.call(-9007199254740992, 36) is "-2gosa7pa2gw"
226 PASS Number.prototype.toString.call(new Number(-9007199254740992), 36) is "-2gosa7pa2gw"
228 PASS Number.prototype.toString.call(0.1) is "0.1"
229 PASS Number.prototype.toString.call(new Number(0.1)) is "0.1"
233 PASS Number.prototype.toString.call(0.1, 2) is "0.0001100110011001100110011001100110011001100110011…
234 PASS Number.prototype.toString.call(new Number(0.1), 2) is "0.0001100110011001100110011001100110011…
236 FAIL Number.prototype.toString.call(0.1, 36) should be 0.3lllllllllm. Was 0.3llllllllllqsn8td1p464u…
237 FAIL Number.prototype.toString.call(new Number(0.1), 36) should be 0.3lllllllllm. Was 0.3llllllllll…
239 PASS Number.prototype.toString.call(-1.1) is "-1.1"
240 PASS Number.prototype.toString.call(new Number(-1.1)) is "-1.1"
244 PASS Number.prototype.toString.call(-1.1, 2) is "-1.00011001100110011001100110011001100110011001100…
245 PASS Number.prototype.toString.call(new Number(-1.1), 2) is "-1.00011001100110011001100110011001100…
247 FAIL Number.prototype.toString.call(-1.1, 36) should be -1.3llllllllm. Was -1.3lllllllllxagau2ctids…
248 FAIL Number.prototype.toString.call(new Number(-1.1), 36) should be -1.3llllllllm. Was -1.3llllllll…
250 PASS Number.prototype.toString.call(1.1) is "1.1"
251 PASS Number.prototype.toString.call(new Number(1.1)) is "1.1"
255 PASS Number.prototype.toString.call(1.1, 2) is "1.0001100110011001100110011001100110011001100110011…
256 PASS Number.prototype.toString.call(new Number(1.1), 2) is "1.0001100110011001100110011001100110011…
258 FAIL Number.prototype.toString.call(1.1, 36) should be 1.3llllllllm. Was 1.3lllllllllxagau2ctidswz5…
259 FAIL Number.prototype.toString.call(new Number(1.1), 36) should be 1.3llllllllm. Was 1.3lllllllllxa…
261 PASS Number.prototype.toString.call(1984.1) is "1984.1"
262 PASS Number.prototype.toString.call(new Number(1984.1)) is "1984.1"
266 PASS Number.prototype.toString.call(1984.1, 2) is "11111000000.000110011001100110011001100110011001…
267 PASS Number.prototype.toString.call(new Number(1984.1), 2) is "11111000000.000110011001100110011001…
269 FAIL Number.prototype.toString.call(1984.1, 36) should be 1j4.3lllllllc. Was 1j4.3lllllllcd2obsszcl…
270 FAIL Number.prototype.toString.call(new Number(1984.1), 36) should be 1j4.3lllllllc. Was 1j4.3lllll…
272 PASS Number.prototype.toString.call(-1984.1) is "-1984.1"
273 PASS Number.prototype.toString.call(new Number(-1984.1)) is "-1984.1"
277 PASS Number.prototype.toString.call(-1984.1, 2) is "-11111000000.0001100110011001100110011001100110…
278 PASS Number.prototype.toString.call(new Number(-1984.1), 2) is "-11111000000.0001100110011001100110…
280 FAIL Number.prototype.toString.call(-1984.1, 36) should be -1j4.3lllllllc. Was -1j4.3lllllllcd2obss…
281 FAIL Number.prototype.toString.call(new Number(-1984.1), 36) should be -1j4.3lllllllc. Was -1j4.3ll…
283 PASS Number.prototype.toString.call(2147483647.1) is "2147483647.1"
284 PASS Number.prototype.toString.call(new Number(2147483647.1)) is "2147483647.1"
288 PASS Number.prototype.toString.call(2147483647.1, 2) is "1111111111111111111111111111111.0001100110…
289 PASS Number.prototype.toString.call(new Number(2147483647.1), 2) is "111111111111111111111111111111…
291 FAIL Number.prototype.toString.call(2147483647.1, 36) should be zik0zj.3lllg. Was zik0zj.3lllfu07ld…
292 FAIL Number.prototype.toString.call(new Number(2147483647.1), 36) should be zik0zj.3lllg. Was zik0z…
294 PASS Number.prototype.toString.call(-2147483648.1) is "-2147483648.1"
295 PASS Number.prototype.toString.call(new Number(-2147483648.1)) is "-2147483648.1"
299 PASS Number.prototype.toString.call(-2147483648.1, 2) is "-10000000000000000000000000000000.0001100…
300 PASS Number.prototype.toString.call(new Number(-2147483648.1), 2) is "-1000000000000000000000000000…
302 FAIL Number.prototype.toString.call(-2147483648.1, 36) should be -zik0zk.3lllg. Was -zik0zk.3lllfu0…
303 FAIL Number.prototype.toString.call(new Number(-2147483648.1), 36) should be -zik0zk.3lllg. Was -zi…
305 PASS Number.prototype.toString.call(9007199254740992) is "9007199254740992"
306 PASS Number.prototype.toString.call(new Number(9007199254740992)) is "9007199254740992"
310 PASS Number.prototype.toString.call(9007199254740992, 2) is "10000000000000000000000000000000000000…
311 PASS Number.prototype.toString.call(new Number(9007199254740992), 2) is "10000000000000000000000000…
313 PASS Number.prototype.toString.call(9007199254740992, 36) is "2gosa7pa2gw"
314 PASS Number.prototype.toString.call(new Number(9007199254740992), 36) is "2gosa7pa2gw"
316 PASS Number.prototype.toString.call(-9007199254740992) is "-9007199254740992"
317 PASS Number.prototype.toString.call(new Number(-9007199254740992)) is "-9007199254740992"
321 PASS Number.prototype.toString.call(-9007199254740992, 2) is "-100000000000000000000000000000000000…
322 PASS Number.prototype.toString.call(new Number(-9007199254740992), 2) is "-100000000000000000000000…
324 PASS Number.prototype.toString.call(-9007199254740992, 36) is "-2gosa7pa2gw"
325 PASS Number.prototype.toString.call(new Number(-9007199254740992), 36) is "-2gosa7pa2gw"