HomeSort by relevance Sort by last modified time
    Searched refs:DONT_ENUM (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/v8/src/js/
promise-extra.js 17 utils.InstallFunctions(GlobalPromise.prototype, DONT_ENUM, [
21 utils.InstallFunctions(GlobalPromise, DONT_ENUM, [
collection-iterator.js 79 utils.InstallFunctions(SetIterator.prototype, DONT_ENUM, [
84 "Set Iterator", READ_ONLY | DONT_ENUM);
86 utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
92 %AddNamedProperty(GlobalSet.prototype, iteratorSymbol, SetValues, DONT_ENUM);
157 utils.InstallFunctions(MapIterator.prototype, DONT_ENUM, [
162 "Map Iterator", READ_ONLY | DONT_ENUM);
165 utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
171 %AddNamedProperty(GlobalMap.prototype, iteratorSymbol, MapEntries, DONT_ENUM);
iterator-prototype.js 20 IteratorPrototypeIterator, DONT_ENUM);
array-iterator.js 134 utils.InstallFunctions(ArrayIterator.prototype, DONT_ENUM, [
139 "Array Iterator", READ_ONLY | DONT_ENUM);
141 utils.InstallFunctions(GlobalArray.prototype, DONT_ENUM, [
152 DONT_ENUM);
154 utils.InstallFunctions(GlobalTypedArray.prototype, DONT_ENUM, [
160 iteratorSymbol, TypedArrayValues, DONT_ENUM);
proxy.js 26 utils.InstallFunctions(GlobalProxy, DONT_ENUM, [
symbol.js 96 utils.InstallFunctions(GlobalSymbol, DONT_ENUM, [
102 GlobalSymbol.prototype, toStringTagSymbol, "Symbol", DONT_ENUM | READ_ONLY);
104 utils.InstallFunctions(GlobalSymbol.prototype, DONT_ENUM | READ_ONLY, [
108 utils.InstallFunctions(GlobalSymbol.prototype, DONT_ENUM, [
string-iterator.js 93 utils.InstallFunctions(StringIterator.prototype, DONT_ENUM, [
97 "String Iterator", READ_ONLY | DONT_ENUM);
101 StringPrototypeIterator, DONT_ENUM);
weak-collection.js 105 DONT_ENUM);
107 DONT_ENUM | READ_ONLY);
110 utils.InstallFunctions(GlobalWeakMap.prototype, DONT_ENUM, [
179 DONT_ENUM);
181 DONT_ENUM | READ_ONLY);
184 utils.InstallFunctions(GlobalWeakSet.prototype, DONT_ENUM, [
v8natives.js 94 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
106 utils.InstallFunctions(global, DONT_ENUM, [
200 DONT_ENUM);
203 utils.InstallFunctions(GlobalObject.prototype, DONT_ENUM, [
218 utils.InstallFunctions(GlobalObject, DONT_ENUM, [
384 DONT_ENUM);
406 utils.InstallFunctions(GlobalNumber.prototype, DONT_ENUM, [
416 utils.InstallFunctions(GlobalNumber, DONT_ENUM, [
prologue.js 79 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
107 if (IS_UNDEFINED(attributes)) attributes = DONT_ENUM;
118 if (IS_UNDEFINED(attributes)) attributes = DONT_ENUM;
123 %DefineAccessorPropertyUnchecked(object, name, getter, setter, DONT_ENUM);
158 UNDEFINED, DONT_ENUM | DONT_DELETE);
164 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
harmony-simd.js 577 %AddNamedProperty(GlobalSIMD, toStringTagSymbol, 'SIMD', READ_ONLY | DONT_ENUM);
583 DONT_ENUM);
585 DONT_ENUM | READ_ONLY);
586 utils.InstallFunctions(GlobalNAME.prototype, DONT_ENUM, [
597 utils.InstallFunctions(GlobalFloat32x4, DONT_ENUM, [
642 utils.InstallFunctions(GlobalInt32x4, DONT_ENUM, [
686 utils.InstallFunctions(GlobalUint32x4, DONT_ENUM, [
729 utils.InstallFunctions(GlobalBool32x4, DONT_ENUM, [
744 utils.InstallFunctions(GlobalInt16x8, DONT_ENUM, [
783 utils.InstallFunctions(GlobalUint16x8, DONT_ENUM, [
    [all...]
collection.js 270 %AddNamedProperty(GlobalSet.prototype, "constructor", GlobalSet, DONT_ENUM);
272 DONT_ENUM | READ_ONLY);
280 utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
457 %AddNamedProperty(GlobalMap.prototype, "constructor", GlobalMap, DONT_ENUM);
459 GlobalMap.prototype, toStringTagSymbol, "Map", DONT_ENUM | READ_ONLY);
467 utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
harmony-atomics.js 155 %AddNamedProperty(Atomics, toStringTagSymbol, "Atomics", READ_ONLY | DONT_ENUM);
164 utils.InstallFunctions(Atomics, DONT_ENUM, [
math.js 126 %AddNamedProperty(GlobalMath, toStringTagSymbol, "Math", READ_ONLY | DONT_ENUM);
137 utils.InstallFunctions(GlobalMath, DONT_ENUM, [
arraybuffer.js 98 utils.InstallFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [
harmony-string-padding.js 73 utils.InstallFunctions(GlobalString.prototype, DONT_ENUM, [
templates.js 74 READ_ONLY | DONT_ENUM | DONT_DELETE);
  /external/v8/test/mjsunit/regress/
regress-334.js 33 var DONT_ENUM = 2;
40 %AddNamedProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
41 %AddNamedProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
43 %AddNamedProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE);
  /external/v8/src/
property.cc 18 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
bootstrapper.cc 368 PropertyAttributes attributes = DONT_ENUM) {
378 PropertyAttributes attributes = DONT_ENUM) {
386 PropertyAttributes attributes = DONT_ENUM) {
428 PropertyAttributes attributes = DONT_ENUM;
455 InstallFunction(base, fun, name, DONT_ENUM);
496 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
498 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY);
655 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE);
657 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
659 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)
    [all...]
property-descriptor.h 108 (has_enumerable() && !enumerable() ? DONT_ENUM : NONE) |
property-details.h 19 DONT_ENUM = ::v8::DontEnum,
22 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
47 STATIC_ASSERT(ONLY_ENUMERABLE == static_cast<PropertyFilter>(DONT_ENUM));
338 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
  /external/v8/test/mjsunit/es6/
array-iterator.js 33 var DONT_ENUM = 2;
41 assertEquals(desc.enumerable, !(attrs & DONT_ENUM));
47 assertHasOwnProperty(Array.prototype, 'entries', DONT_ENUM);
48 assertHasOwnProperty(Array.prototype, 'keys', DONT_ENUM);
49 assertHasOwnProperty(Array.prototype, Symbol.iterator, DONT_ENUM);
162 assertHasOwnProperty(ArrayIteratorPrototype, 'next', DONT_ENUM);
  /external/v8/src/runtime/
runtime-classes.cc 138 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
149 constructor, home_object_symbol, prototype, DONT_ENUM),
158 constructor, DONT_ENUM);
runtime-utils.h 121 (args.smi_at(index) & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); \

Completed in 252 milliseconds

1 2 3