Searched defs:Object (Results 1 - 25 of 115) 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-377290.js7 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
H A Dregress-359441.js22 Object.prototype.__defineSetter__('x', deopt);
21 Object.prototype.__defineSetter__('x', deopt); class
H A Dregress-1365.js36 var valueOf = Object.prototype.valueOf;
37 var hasOwnProperty = Object.prototype.hasOwnProperty;
42 assertEquals(Object.prototype, Object.prototype.valueOf());
46 %OptimizeFunctionOnNextCall(Object.prototype.valueOf); class
47 Object.prototype.valueOf();
49 assertEquals(Object.prototype, Object.prototype.valueOf());
54 var valueOf = Object.prototype.valueOf;
55 var hasOwnProperty = Object
[all...]
H A Dregress-crbug-3184.js28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
70 Object.extend( Array.prototype,
H A Dregress-123512.js39 Object.prototype[0] = 23;
47 Object.prototype.__defineGetter__(0, function() { throw Error(); });
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(); });
36 Object.prototype[0] = 23; 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
H A Dconcurrent-initial-prototype-change.js49 Object.prototype[1] = 1.5;
47 Object.prototype[1] = 1.5; class
H A Dstring-fromcharcode.js54 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);
50 Object.prototype.fromCharCode = function(x) { return this; }; class
H A Darguments-opt.js97 // Object access.
129 Object.prototype[5] = 42;
131 Object.prototype[-5] = 87;
125 Object.prototype[5] = 42; class
/external/clang/test/Parser/
H A Dnamelookup-bug-1.c4 typedef int Object; typedef
6 struct Object *pp;
8 Object staticObject1;
H A Dnamelookup-bug-2.c4 typedef int Object; typedef
6 struct Object {int i1; } *P; struct
9 struct Object { int i2; } *X; struct
10 Object:
12 Object a;
/external/chromium_org/v8/test/mjsunit/bugs/
H A Dbug-1344252.js42 // 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; });
44 Object.prototype.__defineSetter__('x', function(value) { result_x = value; }); class
/external/clang/test/CodeGenCXX/
H A D2007-01-02-UnboundedArray.cpp7 struct Object { struct
12 new Object;

Completed in 4407 milliseconds

12345