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

1 2 3 4 5 6 7

  /external/v8/test/mjsunit/es6/
array-species-delete.js 20 Object.prototype[Symbol.species] = MyArray;
array-species-constructor-delete.js 20 Object.prototype.constructor = MyArray;
indexed-integer-exotics.js 7 Object.prototype["10"] = "unreachable";
8 Object.prototype["7"] = "unreachable";
9 Object.prototype["-1"] = "unreachable";
10 Object.prototype["-0"] = "unreachable";
11 Object.prototype["4294967295"] = "unreachable";
42 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-1"));
43 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-0"));
44 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "10"));
45 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "4294967295"));
46 assertEquals(10, Object.keys(array).length)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-592340.js 6 Object.prototype[Symbol.species] = MyArray;
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-377290.js 7 Object.prototype.__defineGetter__('constructor', function() { throw 42; });
property-descriptor-to-object.js 6 Object.prototype.value = 0;
7 var d = Object.getOwnPropertyDescriptor(o, "prop");
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);
regress-359441.js 22 Object.prototype.__defineSetter__('x', deopt);
regress-integer-indexed-element.js 6 Object.prototype[1.3] = 10;
  /external/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/v8/test/mjsunit/
try-catch-extension-object.js 30 // Object prototype have no effect.
33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
concurrent-initial-prototype-change.js 35 // to the Object prototype below, future compiles will not use the
52 // Optimized code of f1 depends on initial object and array maps.
56 // Invalidate current initial object map after compile graph has been created.
57 Object.prototype[1] = 1.5;
  /dalvik/dx/tests/076-dex-synch-and-stack/
Blort.java 20 new Object();
  /external/clang/test/CodeGenCXX/
2007-01-02-UnboundedArray.cpp 7 struct Object {
12 new Object;
  /external/clang/test/Parser/
namelookup-bug-1.c 4 typedef int Object;
6 struct Object *pp;
8 Object staticObject1;

Completed in 1994 milliseconds

1 2 3 4 5 6 7