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

1 2 3

  /external/v8/src/js/
harmony-object-observe.js 14 utils.InstallFunctions(global.Object, DONT_ENUM, ObserveObjectMethods);
15 utils.InstallFunctions(global.Array, DONT_ENUM, ObserveArrayMethods);
harmony-species.js 51 utils.InstallGetter(GlobalArray, speciesSymbol, ArraySpecies, DONT_ENUM);
52 utils.InstallGetter(GlobalTypedArray, speciesSymbol, TypedArraySpecies, DONT_ENUM);
53 utils.InstallGetter(GlobalMap, speciesSymbol, MapSpecies, DONT_ENUM);
54 utils.InstallGetter(GlobalSet, speciesSymbol, SetSpecies, DONT_ENUM);
56 DONT_ENUM);
57 utils.InstallGetter(GlobalPromise, speciesSymbol, PromiseSpecies, DONT_ENUM);
58 utils.InstallGetter(GlobalRegExp, speciesSymbol, RegExpSpecies, DONT_ENUM);
promise-extra.js 17 utils.InstallFunctions(GlobalPromise.prototype, DONT_ENUM, [
21 utils.InstallFunctions(GlobalPromise, DONT_ENUM, [
array-iterator.js 116 utils.InstallFunctions(ArrayIterator.prototype, DONT_ENUM, [
121 ArrayIteratorIterator, DONT_ENUM);
123 "Array Iterator", READ_ONLY | DONT_ENUM);
125 utils.InstallFunctions(GlobalArray.prototype, DONT_ENUM, [
136 DONT_ENUM);
139 'entries', ArrayEntries, DONT_ENUM);
140 %AddNamedProperty(GlobalTypedArray.prototype, 'values', ArrayValues, DONT_ENUM);
141 %AddNamedProperty(GlobalTypedArray.prototype, 'keys', ArrayKeys, DONT_ENUM);
143 iteratorSymbol, ArrayValues, DONT_ENUM);
generator.js 89 DONT_ENUM,
94 GeneratorFunctionPrototype, DONT_ENUM | READ_ONLY);
96 toStringTagSymbol, "Generator", DONT_ENUM | READ_ONLY);
99 toStringTagSymbol, "GeneratorFunction", DONT_ENUM | READ_ONLY);
101 GeneratorFunction, DONT_ENUM | READ_ONLY);
symbol.js 105 utils.InstallFunctions(GlobalSymbol, DONT_ENUM, [
111 GlobalSymbol.prototype, "constructor", GlobalSymbol, DONT_ENUM);
113 GlobalSymbol.prototype, toStringTagSymbol, "Symbol", DONT_ENUM | READ_ONLY);
115 utils.InstallFunctions(GlobalSymbol.prototype, DONT_ENUM | READ_ONLY, [
119 utils.InstallFunctions(GlobalSymbol.prototype, DONT_ENUM, [
124 utils.InstallFunctions(GlobalObject, 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);
string-iterator.js 92 utils.InstallFunctions(StringIterator.prototype, DONT_ENUM, [
96 "String Iterator", READ_ONLY | DONT_ENUM);
100 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, [
harmony-reflect.js 31 utils.InstallFunctions(GlobalReflect, 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);
146 UNDEFINED, DONT_ENUM | DONT_DELETE);
152 %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...]
typedarray.js 786 "constructor", TypedArray, DONT_ENUM);
787 utils.InstallFunctions(TypedArray, DONT_ENUM | DONT_DELETE | READ_ONLY, [
793 DONT_ENUM | DONT_DELETE);
795 TypedArrayGetByteLength, DONT_ENUM | DONT_DELETE);
797 DONT_ENUM | DONT_DELETE);
800 utils.InstallFunctions(TypedArray.prototype, DONT_ENUM, [
833 READ_ONLY | DONT_ENUM | DONT_DELETE);
836 "constructor", global.NAME, DONT_ENUM);
839 READ_ONLY | DONT_ENUM | DONT_DELETE);
842 DONT_ENUM | DONT_DELETE)
    [all...]
harmony-atomics.js 187 %AddNamedProperty(global, "Atomics", Atomics, DONT_ENUM);
190 %AddNamedProperty(Atomics, toStringTagSymbol, "Atomics", READ_ONLY | DONT_ENUM);
199 utils.InstallFunctions(Atomics, DONT_ENUM, [
collection.js 263 %AddNamedProperty(GlobalSet.prototype, "constructor", GlobalSet, DONT_ENUM);
265 DONT_ENUM | READ_ONLY);
271 utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
443 %AddNamedProperty(GlobalMap.prototype, "constructor", GlobalMap, DONT_ENUM);
445 GlobalMap.prototype, toStringTagSymbol, "Map", DONT_ENUM | READ_ONLY);
451 utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
arraybuffer.js 88 utils.InstallFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [
proxy.js 58 utils.InstallFunctions(GlobalProxy, DONT_ENUM, [
templates.js 74 READ_ONLY | DONT_ENUM | DONT_DELETE);
  /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);
163 assertHasOwnProperty(ArrayIteratorPrototype, Symbol.iterator, DONT_ENUM);
  /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-details.h 19 DONT_ENUM = ::v8::DontEnum,
22 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
52 STATIC_ASSERT(ONLY_ENUMERABLE == static_cast<PropertyFilter>(DONT_ENUM));
334 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
property.cc 17 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
bootstrapper.cc 366 PropertyAttributes attributes = DONT_ENUM) {
377 PropertyAttributes attributes = DONT_ENUM) {
423 PropertyAttributes attributes = DONT_ENUM;
438 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
440 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY);
603 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE);
605 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
607 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY);
644 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
683 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY)
    [all...]
property-descriptor.h 98 (has_enumerable() && !enumerable() ? DONT_ENUM : NONE) |

Completed in 1424 milliseconds

1 2 3