HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 1 - 25 of 140) 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-377290.js 7 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);
regress-359441.js 22 Object.prototype.__defineSetter__('x', deopt);
regress-1365.js 36 var valueOf = Object.prototype.valueOf;
37 var hasOwnProperty = Object.prototype.hasOwnProperty;
42 assertEquals(Object.prototype, Object.prototype.valueOf());
46 %OptimizeFunctionOnNextCall(Object.prototype.valueOf);
47 Object.prototype.valueOf();
49 assertEquals(Object.prototype, Object.prototype.valueOf());
54 var valueOf = Object.prototype.valueOf;
55 var hasOwnProperty = Object.prototype.hasOwnProperty
    [all...]
regress-crbug-3184.js 28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
70 Object.extend( Array.prototype,
regress-123512.js 39 Object.prototype[0] = 23;
47 Object.prototype.__defineGetter__(0, function() { throw Error(); });
54 // Test the same on boilerplate objects for object literals that contain
63 Object.prototype[0] = 23;
64 Object.prototype.foo = 42;
72 Object.prototype.__defineGetter__(0, function() { throw Error(); });
73 Object.prototype.__defineGetter__('foo', function() { throw Error(); });
  /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; });
concurrent-initial-prototype-change.js 44 // Optimized code of f1 depends on initial object and array maps.
48 // Invalidate current initial object map after compile graph has been created.
49 Object.prototype[1] = 1.5;
string-fromcharcode.js 54 Object.prototype.fromCharCode = function(x) { return this; };
90 : (num < 9) ? constFun(Object("dummy"))
91 : constFun(Object(42));
92 var expected = (num < 5) ? " " : (num < 9) ? Object("dummy") : Object(42);
arguments-opt.js 97 // Object access.
129 Object.prototype[5] = 42;
131 Object.prototype[-5] = 87;
  /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;
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-1344252.js 42 // Add a setter for x to Object.prototype and make sure it gets
45 Object.prototype.__defineSetter__('x', function(value) { result_x = value; });
53 var proto = new Object();
69 var o1 = new Object();
70 var o2 = new Object();
74 Object.prototype.__defineSetter__('z', function(value) { result_z = value; });

Completed in 848 milliseconds

1 2 3 4 5 6