Searched defs:Object (Results 1 - 25 of 121) sorted by relevance

12345

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-192.js37 Object.prototype.__defineGetter__("x", function() {});
38 Object.prototype.__defineSetter__("y",
0 Object.prototype.__defineGetter__("x", function() {}); class
H A Dregress-1107.js31 Object.prototype.__defineGetter__(0, function(){});
0 Object.prototype.__defineGetter__(0, function(){}); class
H A Dregress-1130.js29 // of JS accessors on Object's prototype elements.
31 Object.prototype.__defineGetter__(0, function() { throw 42; } );
0 Object.prototype.__defineGetter__(0, function() { throw 42; } ); class
H A Dregress-1172-bis.js31 Object.prototype.__defineGetter__(0, function() { throw 42; });
34 Object[0]();
0 Object.prototype.__defineGetter__(0, function() { throw 42; }); class
H A Dregress-1172.js33 Object.prototype.__defineGetter__('constructor', function() { throw 42; });
0 Object.prototype.__defineGetter__('constructor', function() { throw 42; }); class
H A Dregress-1254366.js30 Object.prototype.findOrStore = function() {
35 var a = new Object();
28 Object.prototype.findOrStore = function() { class
H A Dregress-191.js34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
32 Object.prototype.__defineSetter__("x", function() { setterCalled = true; }); class
H A Dregress-2250.js47 Object.prototype.equals = function (other) {
45 Object.prototype.equals = function (other) { class
H A Dregress-88591.js32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
33 Object.prototype.__defineGetter__('x', function () { return 0; });
39 var o = Object.getOwnPropertyDescriptor(this, 'x');
31 Object.prototype.__defineSetter__('x', function(x) { called = true; }); class
H A Dregress-1403.js31 Object.prototype.__proto__ = { __proto__: null };
30 Object.prototype.__proto__ = { __proto__: null }; class
H A Dregress-1412.js46 Object.prototype.valueOf.apply(receiver, arguments);
45 Object.prototype.valueOf.apply(receiver, arguments); class
/external/v8/test/mjsunit/regress/
H A Dregress-192.js37 Object.prototype.__defineGetter__("x", function() {});
38 Object.prototype.__defineSetter__("y",
0 Object.prototype.__defineGetter__("x", function() {}); class
H A Dregress-1107.js31 Object.prototype.__defineGetter__(0, function(){});
0 Object.prototype.__defineGetter__(0, function(){}); class
H A Dregress-1130.js29 // of JS accessors on Object's prototype elements.
31 Object.prototype.__defineGetter__(0, function() { throw 42; } );
0 Object.prototype.__defineGetter__(0, function() { throw 42; } ); class
H A Dregress-1172-bis.js31 Object.prototype.__defineGetter__(0, function() { throw 42; });
34 Object[0]();
0 Object.prototype.__defineGetter__(0, function() { throw 42; }); class
H A Dregress-1172.js33 Object.prototype.__defineGetter__('constructor', function() { throw 42; });
0 Object.prototype.__defineGetter__('constructor', function() { throw 42; }); class
H A Dregress-1254366.js30 Object.prototype.findOrStore = function() {
35 var a = new Object();
28 Object.prototype.findOrStore = function() { class
H A Dregress-191.js34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
32 Object.prototype.__defineSetter__("x", function() { setterCalled = true; }); class
H A Dregress-88591.js32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
33 Object.prototype.__defineGetter__('x', function () { return 0; });
39 var o = Object.getOwnPropertyDescriptor(this, 'x');
31 Object.prototype.__defineSetter__('x', function(x) { called = true; }); class
H A Dregress-1403.js31 Object.prototype.__proto__ = { __proto__: null };
30 Object.prototype.__proto__ = { __proto__: null }; class
H A Dregress-1412.js46 Object.prototype.valueOf.apply(receiver, arguments);
45 Object.prototype.valueOf.apply(receiver, arguments); class
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproperty-static.js34 Object.prototype.load = function() { return this.property; };
35 Object.prototype.load.call({ A:0, property:10 });
36 Object.prototype.load.call({ A:0, B:0, property:11 });
37 Object.prototype.load.call({ A:0, B:0, C:0, property:12 });
38 Object.prototype.load.call({ A:0, B:0, C:0, D:0, property:13 });
39 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, property:14 });
40 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, F:0, property:15 });
0 Object.prototype.load = function() { return this.property; }; class
/external/chromium_org/v8/test/mjsunit/
H A Dtry-catch-extension-object.js30 // Object prototype have no effect.
33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
32 Object.prototype.__defineSetter__("x", function() { setterCalled = true; }); class
/external/v8/test/mjsunit/
H A Dstring-fromcharcode.js33 Object.prototype.fromCharCode = function(x) { return this; };
69 : (num < 9) ? constFun(Object("dummy"))
70 : constFun(Object(42));
71 var expected = (num < 5) ? " " : (num < 9) ? Object("dummy") : Object(42);
0 Object.prototype.fromCharCode = function(x) { return this; }; class
H A Dtry-catch-extension-object.js30 // Object prototype have no effect.
33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
32 Object.prototype.__defineSetter__("x", function() { setterCalled = true; }); class

Completed in 337 milliseconds

12345