Home
last modified time | relevance | path

Searched defs:__proto__ (Results 1 – 25 of 124) sorted by relevance

12345

/external/v8/test/webkit/
Dfor-in-cached.js42 var o = { x: 1, __proto__: null }; property
52 var o = { x: 1, __proto__: proto }; property
57 forIn3({ __proto__: { y1: 2 } }); property
58 forIn3({ __proto__: { y1: 2 } }); property
61 forIn3({ y2 : 2, __proto__: null }); property
62 forIn3({ y2 : 2, __proto__: null }); property
65 forIn3({ __proto__: { __proto__: { y3 : 2 } } }); property
66 forIn3({ __proto__: { __proto__: { y3 : 2 } } }); property
Ddictionary-prototype-caching.js31 var o = { __proto__: proto }; property
49 var o = { __proto__: proto }; property
67 var o = { __proto__: proto }; property
85 var subclass1 = { __proto__: proto }; property
86 var subclass2 = { __proto__: proto }; property
Ddictionary-no-cache.js86 var test4 = {__proto__:{prop:"on prototype"}}; property
90 var test5 = {__proto__:{__proto__:{prop:"on prototype's prototype"}}}; property
/external/v8/test/mjsunit/regress/
Dregress-1403.js31 Object.prototype.__proto__ = { __proto__: null }; property
35 Array.prototype.__proto__ = { __proto__: null }; method in Array
Dregress-3462.js8 var o = {__proto__: f}; property
19 Number.prototype.__proto__ = f; method in Number
32 var o = {__proto__: a}; property
42 Number.prototype.__proto__ = [1]; method in Number
Dregress-4665.js8 FirstBuffer.prototype.__proto__ = Uint8Array.prototype method in FirstBuffer
24 SecondBuffer.prototype.__proto__ = Uint8Array.prototype method in SecondBuffer
Dregress-4376-1.js7 Baz.prototype = { __proto__: new Bar() } property in Baz
11 Baz.prototype.__proto__ = null; method in Baz
Dregress-618.js53 C2.prototype.__proto__ = { set x(value) { this.y = 23; } }; method in C2
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; }); method in C4
Dregress-4296.js19 var o = {__proto__: new String("ab")}; property
33 var o = {__proto__: {}}; property
Dregress-1015.js50 var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } }, property
62 var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } }, property
Dregress-143967.js33 functionWithoutProto.__proto__ = function() {}; function
/external/v8/test/mjsunit/es6/
Dproxies-cross-realm-exception.js15 __proto__ = new Proxy({}, { getPrototypeOf() { assertUnreachable() } }); variable
30 __proto__ = new Proxy({}, { get(t, p, r) { assertUnreachable() } }); variable
37 __proto__.__proto__ = new Proxy({}, { variable
46 __proto__ = new Proxy({}, variable
Dsuper.js24 __proto__: Base.prototype, property in Derived
64 __proto__: Base.prototype, property in Derived
112 __proto__: Base.prototype, property in Derived
147 __proto__: Base.prototype, property in Derived
214 __proto__: Base.prototype, property in Derived
286 __proto__: Base.prototype, property in Derived
328 __proto__: Base.prototype, property in Derived
402 __proto__: Base.prototype, property in Derived
479 __proto__: Base.prototype, property in Derived
503 __proto__: Base.prototype, property in Derived
[all …]
Dobject-literals-super.js62 __proto__: { property
77 __proto__: { property
93 __proto__: { property
122 __proto__: { property
143 __proto__: p, property
174 __proto__: p, property
Dobject-literals-property-shorthand.js63 __proto__ field
74 __proto__: p, property
75 __proto__, property
Dcomputed-property-names-super.js20 __proto__: proto, property
43 __proto__: proto, property
64 __proto__: proto, property
/external/v8/test/mjsunit/
Delide-double-hole-check-8.js38 Array.prototype.__proto__ = new Object(); method in Array
39 Array.prototype.__proto__[1] = 1.5; method in Array
Darray-elements-from-array-prototype-chain.js46 Array.prototype.__proto__ = {3: at3}; method in Array
47 Array.prototype.__proto__.__proto__ = {7: at7}; method in Array
Dfun-as-prototype.js30 Number.prototype.__proto__ = Funky; method in Number
35 Number.prototype.__proto__ = [1, 2, 3]; method in Number
Dsetter-on-constructor-prototype.js50 C2.prototype.__proto__ = { set x(value) { this.y = 23; } }; method in C2
82 C4.prototype.__proto__ = { }; method in C4
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; }); method in C4
Dfor-in-opt.js50 var o = {__proto__: proxy}; property
85 f3({__proto__:{x:1}}); property
86 f3({__proto__:{x:1}}); property
140 var o3 = {__proto__: proxy3}; property
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
Dtimeline_data_series.js163 __proto__: superClass.prototype, property in SourceCountDataSeries
227 __proto__: superClass.prototype, property in SocketsInUseDataSeries
262 __proto__: superClass.prototype, property in TransferRateDataSeries
321 __proto__: superClass.prototype, property in NetworkTransferRateDataSeries
352 __proto__: superClass.prototype, property in DiskCacheTransferRateDataSeries
Dlog_util_test.js32 __proto__: NetInternalsTest.Task.prototype, property in CreateAndLoadLogTask
83 __proto__: NetInternalsTest.Task.prototype, property in WaitForConstantsTask
117 __proto__: NetInternalsTest.Task.prototype, property in GetNetLogFileContentsAndLoadLogTask
/external/v8/test/mjsunit/harmony/
Dprivate-symbols.js21 var object2 = {__proto__: object}; property
32 var object = {__proto__: proxy}; property
/external/v8/test/mjsunit/es6/regress/
Dregress-576662.js8 this.__proto__ = new Proxy({},{}); property

12345