Searched defs:Number (Results 1 - 25 of 81) sorted by relevance

1234

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1062422.js29 Number.prototype.__proto__ = String.prototype;
0 Number.prototype.__proto__ = String.prototype; class
H A Dregress-877615.js28 Number.prototype.toLocaleString = function() { return 'invalid'; };
31 Number.prototype.toLocaleString = 'invalid';
34 delete Number.prototype.toLocaleString;
35 Number.prototype.toString = function() { return 'invalid' };
0 Number.prototype.toLocaleString = function() { return 'invalid'; }; class
H A Dregress-900966.js44 Number.prototype[11] = 'y';
43 Number.prototype[11] = 'y'; class
H A Dregress-3462.js19 Number.prototype.__proto__ = f;
25 assertFalse(Number.prototype.hasOwnProperty('prototype'));
42 Number.prototype.__proto__ = [1];
46 assertFalse(Number.prototype.hasOwnProperty('length'));
18 Number.prototype.__proto__ = f; class
/external/chromium_org/v8/test/mjsunit/
H A Derror-tostring-omit.js45 Number.prototype.toFixed.call(veryLongString);
44 Number.prototype.toFixed.call(veryLongString); class
H A Dfun-as-prototype.js30 Number.prototype.__proto__ = Funky;
35 Number.prototype.__proto__ = [1, 2, 3];
29 Number.prototype.__proto__ = Funky; class
H A Dindexed-value-properties.js28 // Test that the Number, String and Boolean prototypes are searched
44 Number.prototype[0] = 0;
45 Number.prototype[1] = return_one;
42 Number.prototype[0] = 0; class
H A Dkeyed-call-generic.js49 Number.prototype.square = function() { return this * this; }
50 Number.prototype.power4 = function() { return this.square().square(); }
52 Number.prototype.type = TypeOfThis;
47 Number.prototype.square = function() { return this * this; } class
H A Dvalue-wrapper.js97 assertEquals('[object Number]', (42).ObjectToString());
98 assertEquals('[object Number]', (3.14).ObjectToString());
107 Number.prototype.TypeOfThis = TypeOfThis;
109 Number.prototype[7] = TypeOfThis;
113 Number.prototype.ObjectValueOf = Object.prototype.valueOf;
117 Number.prototype.ObjectToString = Object.prototype.toString;
124 Number.prototype.TypeOfThis = 'x';
126 Number.prototype[7] = 'x';
130 Number.prototype.TypeOfThis = TypeOfThis;
132 Number
106 Number.prototype.TypeOfThis = TypeOfThis; class
[all...]
H A Dvalue-callic-prototype-change.js54 Number.prototype.toString = function() { return 0; };
65 Number.prototype.toString = function() { return 42; };
53 Number.prototype.toString = function() { return 0; }; class
/external/chromium_org/v8/test/webkit/
H A Dprimitive-method-this.js32 Number.prototype.thisType = function() { return typeof this; };
31 Number.prototype.thisType = function() { return typeof this; }; class
/external/chromium_org/v8/test/webkit/fast/js/
H A DtoString-overrides.js32 var backupNumberToString = Number.prototype.toString;
33 var backupNumberToLocaleString = Number.prototype.toLocaleString;
38 Number.prototype.toString = function() { return "toString"; }
39 Number.prototype.toLocaleString = function() { return "toLocaleString"; }
46 Number.prototype.toLocaleString = "invalid";
62 Number.prototype.toString = backupNumberToString;
63 Number.prototype.toLocaleString = backupNumberToLocaleString;
35 Number.prototype.toString = function() { return "toString"; } class
H A Dprimitive-property-access-edge-cases.js52 Number.prototype.x = 1;
53 Number.prototype.y = 1;
54 delete Number.prototype.x;
102 shouldBeTrue("checkGet(1, Number)");
105 shouldBeTrue("checkSet(1, Number)");
108 shouldBeTrue("checkGetStrict(1, Number)");
111 shouldBeTrue("checkSetStrict(1, Number)");
139 shouldBeTrue("checkRead(1, Number)");
142 shouldBeTrue("checkWrite(1, Number)");
145 shouldBeTrue("checkReadStrict(1, Number)");
50 Number.prototype.x = 1; class
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dast.ml8 | Number of float Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dast.ml8 | Number of float Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dast.ml8 | Number of float Constructor in type:expr
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-arguments.js58 Number.prototype.foo = 42;
59 delete Number.prototype.foo;
56 Number.prototype.foo = 42; class
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A DArray.js202 var backupNumberToString = Number.prototype.toString;
203 var backupNumberToLocaleString = Number.prototype.toLocaleString;
208 Number.prototype.toString = function() { return "toString"; }
209 Number.prototype.toLocaleString = function() { return "toLocaleString"; }
216 Number.prototype.toLocaleString = "invalid";
232 Number.prototype.toString = backupNumberToString;
233 Number.prototype.toLocaleString = backupNumberToLocaleString;
205 Number.prototype.toString = function() { return "toString"; } class
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DNumber.java19 * $Id: Number.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Number extends UnaryOperation class in inherits:UnaryOperation
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dstring-tagcloud.js93 Number.prototype.toJSONString = function () {
90 Number.prototype.toJSONString = function () { class
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dstring-tagcloud.js93 Number.prototype.toJSONString = function () {
90 Number.prototype.toJSONString = function () { class
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dstring-tagcloud.js93 Number.prototype.toJSONString = function () {
90 Number.prototype.toJSONString = function () { class

Completed in 1046 milliseconds

1234