HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/chromium_org/v8/test/mjsunit/regress/
regress-192.js 28 // Test that exceptions are correctly propagated when creating object
33 // UPDATE: This bug report is no longer valid. In ES5, creating object
37 Object.prototype.__defineGetter__("x", function() {});
38 Object.prototype.__defineSetter__("y",
41 // Creating this object literal will *not* throw an exception because we are
regress-1107.js 31 Object.prototype.__defineGetter__(0, function(){});
regress-1130.js 29 // of JS accessors on Object's prototype elements.
31 Object.prototype.__defineGetter__(0, function() { throw 42; } );
regress-1172-bis.js 31 Object.prototype.__defineGetter__(0, function() { throw 42; });
34 Object[0]();
regress-1172.js 33 Object.prototype.__defineGetter__('constructor', function() { throw 42; });
regress-1254366.js 30 Object.prototype.findOrStore = function() {
35 var a = new Object();
regress-191.js 34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
38 assertFalse(setterCalled, "accessor setter call on context object");
regress-2250.js 32 // out of the loop across the typeof b === "object" condition and cause an
41 if (typeof b === "object") {
47 Object.prototype.equals = function (other) {
regress-88591.js 28 // Regression test for a crash. A data property in the global object's
29 // prototype shadowed by a setter in the global object's prototype's
32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
33 Object.prototype.__defineGetter__('x', function () { return 0; });
39 var o = Object.getOwnPropertyDescriptor(this, 'x');
regress-1403.js 31 Object.prototype.__proto__ = { __proto__: null };
regress-1412.js 46 Object.prototype.valueOf.apply(receiver, arguments);
  /external/v8/test/mjsunit/regress/
regress-192.js 28 // Test that exceptions are correctly propagated when creating object
33 // UPDATE: This bug report is no longer valid. In ES5, creating object
37 Object.prototype.__defineGetter__("x", function() {});
38 Object.prototype.__defineSetter__("y",
41 // Creating this object literal will *not* throw an exception because we are
regress-1107.js 31 Object.prototype.__defineGetter__(0, function(){});
regress-1130.js 29 // of JS accessors on Object's prototype elements.
31 Object.prototype.__defineGetter__(0, function() { throw 42; } );
regress-1172-bis.js 31 Object.prototype.__defineGetter__(0, function() { throw 42; });
34 Object[0]();
regress-1172.js 33 Object.prototype.__defineGetter__('constructor', function() { throw 42; });
regress-1254366.js 30 Object.prototype.findOrStore = function() {
35 var a = new Object();
regress-191.js 34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
38 assertFalse(setterCalled, "accessor setter call on context object");
regress-88591.js 28 // Regression test for a crash. A data property in the global object's
29 // prototype shadowed by a setter in the global object's prototype's
32 Object.prototype.__defineSetter__('x', function(x) { called = true; });
33 Object.prototype.__defineGetter__('x', function () { return 0; });
39 var o = Object.getOwnPropertyDescriptor(this, 'x');
regress-1403.js 31 Object.prototype.__proto__ = { __proto__: null };
regress-1412.js 46 Object.prototype.valueOf.apply(receiver, arguments);
  /external/chromium_org/v8/test/mjsunit/compiler/
property-static.js 34 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 });
42 // Test for object literals.
45 var object = { property:x };
46 return object.load()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
try-catch-extension-object.js 30 // Object prototype have no effect.
33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
  /external/v8/test/mjsunit/
string-fromcharcode.js 33 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);
try-catch-extension-object.js 30 // Object prototype have no effect.
33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });

Completed in 1164 milliseconds

1 2 3 4 5 6