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

12345

/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-377290.js7 Object.prototype.__defineGetter__('constructor', function() { throw 42; });
0 Object.prototype.__defineGetter__('constructor', function() { throw 42; }); class
H A Dproperty-descriptor-to-object.js6 Object.prototype.value = 0;
7 var d = Object.getOwnPropertyDescriptor(o, "prop");
5 Object.prototype.value = 0; 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.js34 Object.prototype.__defineSetter__('x', function(x) { called = true; });
35 Object.prototype.__defineGetter__('x', function () { return 0; });
41 var o = Object.getOwnPropertyDescriptor(this, 'x');
33 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-578775.js16 Object.prototype.isPrototypeOf.call(__v_0, __v_10);
15 Object.prototype.isPrototypeOf.call(__v_0, __v_10); class
/external/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/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.js35 // to the Object prototype below, future compiles will not use the
57 Object.prototype[1] = 1.5;
55 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
/external/clang/test/Parser/
H A Dnamelookup-bug-1.c4 typedef int Object; typedef
6 struct Object *pp;
8 Object staticObject1;
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cc29 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfoFromObject(void *Object) { argument
30 void *VtablePtr = *reinterpret_cast<void **>(Object);
/external/v8/test/mjsunit/es6/
H A Dindexed-integer-exotics.js7 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
0 Object.prototype["10"] = "unreachable"; class
[all...]
/external/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 353 milliseconds

12345