/external/v8/src/js/ |
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);
|
harmony-object-observe.js | 14 utils.InstallFunctions(global.Object, DONT_ENUM, ObserveObjectMethods); 15 utils.InstallFunctions(global.Array, DONT_ENUM, ObserveArrayMethods);
|
promise-extra.js | 17 utils.InstallFunctions(GlobalPromise.prototype, DONT_ENUM, [ 21 utils.InstallFunctions(GlobalPromise, DONT_ENUM, [
|
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, [
|
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);
|
iterator-prototype.js | 20 IteratorPrototypeIterator, 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);
|
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);
|
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, [
|
string-iterator.js | 92 utils.InstallFunctions(StringIterator.prototype, DONT_ENUM, [ 96 "String Iterator", READ_ONLY | DONT_ENUM); 100 StringPrototypeIterator, DONT_ENUM);
|
harmony-reflect.js | 31 utils.InstallFunctions(GlobalReflect, DONT_ENUM, [
|
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...] |
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);
|
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, [
|
v8natives.js | 103 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY; 115 utils.InstallFunctions(global, DONT_ENUM, [ 633 flag |= desc.isEnumerable() ? 0 : DONT_ENUM; 635 flag |= current.isEnumerable() ? 0 : DONT_ENUM; 637 flag |= DONT_ENUM; 866 DONT_ENUM); 869 utils.InstallFunctions(GlobalObject.prototype, DONT_ENUM, [ 885 utils.InstallFunctions(GlobalObject, DONT_ENUM, [ 944 DONT_ENUM); 946 utils.InstallFunctions(GlobalBoolean.prototype, DONT_ENUM, [ [all...] |
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, [
|
json.js | 242 %AddNamedProperty(GlobalJSON, toStringTagSymbol, "JSON", READ_ONLY | DONT_ENUM); 245 utils.InstallFunctions(GlobalJSON, DONT_ENUM, [ 264 utils.InstallFunctions(GlobalDate.prototype, DONT_ENUM, [
|
arraybuffer.js | 88 utils.InstallFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [
|
templates.js | 74 READ_ONLY | DONT_ENUM | DONT_DELETE);
|
/external/v8/test/mjsunit/ |
mirror-regexp.js | 31 var dont_enum = debug.PropertyAttribute.DontEnum; variable 34 'source': dont_enum, 35 'global': dont_enum, 36 'ignoreCase': dont_enum, 37 'multiline': dont_enum, 38 'unicode' : dont_enum, 71 assertEquals(dont_enum | dont_delete, 88 assertEquals(dont_enum | dont_delete, fromJSON.properties[0].attributes);
|
/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/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/src/ |
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) |
|