• Home
  • Raw
  • Download

Lines Matching full:object

24 // List of functions in Object, excluding the '@@' properties.
26 // where BuiltinsObject::func refers to the native implementation of Object[name].
30 … /* Object.assign ( target, ...sources ) */ \
32 … /* Object.create ( O, Properties ) */ \
34 … /* Object.defineProperties ( O, Properties ) */ \
36 … /* Object.defineProperty ( O, P, Attributes ) */ \
38 … /* Object.entries ( O ) */ \
40 … /* Object.freeze ( O ) */ \
42 … /* Object.fromEntries ( iterable ) */ \
44 … /* Object.getOwnPropertyDescriptor ( O, P ) */ \
46 … /* Object.getOwnPropertyDescriptors ( O ) */ \
48 … /* Object.getOwnPropertyNames ( O ) */ \
50 … /* Object.getOwnPropertySymbols ( O ) */ \
52 … /* Object.getPrototypeOf ( O ) */ \
54 … /* Object.hasOwn ( O, P ) */ \
56 … /* Object.is ( value1, value2 ) */ \
58 … /* Object.isExtensible ( O ) */ \
60 … /* Object.isFrozen ( O ) */ \
62 … /* Object.isSealed ( O ) */ \
64 … /* Object.keys ( O ) */ \
66 … /* Object.preventExtensions ( O ) */ \
68 … /* Object.seal ( O ) */ \
70 … /* Object.setPrototypeOf ( O, proto ) */ \
72 … /* Object.values ( O ) */ \
75 // List of functions in Object.prototype, excluding the constructor and '@@' properties.
77 // where BuiltinsObject::func refers to the native implementation of Object.prototype[name].
80 /* Object.prototype.hasOwnProperty ( V ) */ \
82 /* Object.prototype.isPrototypeOf ( V ) */ \
84 /* Object.prototype.propertyIsEnumerable ( V ) */ \
86 /* Object.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] ) */ \
88 /* Object.prototype.toString ( ) */ \
90 /* Object.prototype.valueOf ( ) */ \
101 // 19.1.1.1Object ( [ value ] )
104 // 19.1.2.1Object.assign ( target, ...sources )
106 // 19.1.2.2Object.create ( O [ , Properties ] )
108 // 19.1.2.3Object.defineProperties ( O, Properties )
110 // 19.1.2.4Object.defineProperty ( O, P, Attributes )
112 // 19.1.2.5Object.freeze ( O )
114 // 19.1.2.6Object.getOwnPropertyDescriptor ( O, P )
116 // 19.1.2.7Object.getOwnPropertyNames ( O )
118 // 19.1.2.8Object.getOwnPropertySymbols ( O )
120 // 19.1.2.9Object.getPrototypeOf ( O )
122 // 19.1.2.10Object.is ( value1, value2 )
124 // 19.1.2.11Object.isExtensible ( O )
126 // 19.1.2.12Object.isFrozen ( O )
128 // 19.1.2.13Object.isSealed ( O )
130 // 19.1.2.14 Object.keys(O)
132 // 20.1.2.22 Object.values(O)
134 // 19.1.2.15 Object.preventExtensions(O)
136 // 19.1.2.17 Object.seal(O)
138 // 19.1.2.18 Object.setPrototypeOf(O, proto)
143 // 19.1.3.2 Object.prototype.hasOwnProperty(V)
147 // 19.1.3.3 Object.prototype.isPrototypeOf(V)
149 // 19.1.3.4 Object.prototype.propertyIsEnumerable(V)
151 // 19.1.3.5 Object.prototype.toLocaleString([reserved1[, reserved2]])
153 // 19.1.3.6 Object.prototype.toString()
155 // 19.1.3.7 Object.prototype.valueOf()
159 // 20.1.2.5 Object.entries ( O )
161 // 20.1.2.7 Object.fromEntries ( iterable )
163 // B.2.2.1 Object.prototype.__proto__
169 // 20.1.2.13 Object.hasOwn ( O, P )
229 … static JSTaggedValue GetBuiltinObjectToString(JSThread *thread, const JSHandle<JSObject> &object);