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

1 2

  /external/v8/src/js/
collection-iterator.js 74 utils.InstallFunctions(SetIterator.prototype, DONT_ENUM, [
79 "Set Iterator", READ_ONLY | DONT_ENUM);
81 utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
87 %AddNamedProperty(GlobalSet.prototype, iteratorSymbol, SetValues, DONT_ENUM);
152 utils.InstallFunctions(MapIterator.prototype, DONT_ENUM, [
157 "Map Iterator", READ_ONLY | DONT_ENUM);
160 utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
166 %AddNamedProperty(GlobalMap.prototype, iteratorSymbol, MapEntries, DONT_ENUM);
proxy.js 26 utils.InstallFunctions(GlobalProxy, DONT_ENUM, [
weak-collection.js 103 DONT_ENUM);
105 DONT_ENUM | READ_ONLY);
108 utils.InstallFunctions(GlobalWeakMap.prototype, DONT_ENUM, [
177 DONT_ENUM);
179 DONT_ENUM | READ_ONLY);
182 utils.InstallFunctions(GlobalWeakSet.prototype, DONT_ENUM, [
v8natives.js 22 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
83 DONT_ENUM);
86 utils.InstallFunctions(GlobalObject.prototype, DONT_ENUM, [
collection.js 258 %AddNamedProperty(GlobalSet.prototype, "constructor", GlobalSet, DONT_ENUM);
260 DONT_ENUM | READ_ONLY);
266 utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
438 %AddNamedProperty(GlobalMap.prototype, "constructor", GlobalMap, DONT_ENUM);
440 GlobalMap.prototype, toStringTagSymbol, "Map", DONT_ENUM | READ_ONLY);
446 utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
harmony-atomics.js 143 %AddNamedProperty(Atomics, toStringTagSymbol, "Atomics", READ_ONLY | DONT_ENUM);
145 utils.InstallFunctions(Atomics, DONT_ENUM, [
arraybuffer.js 77 utils.InstallFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [
harmony-string-padding.js 68 utils.InstallFunctions(GlobalString.prototype, DONT_ENUM, [
messages.js 24 DONT_ENUM | DONT_DELETE | READ_ONLY);
prologue.js 79 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
107 if (IS_UNDEFINED(attributes)) attributes = DONT_ENUM;
144 UNDEFINED, DONT_ENUM | DONT_DELETE);
150 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
templates.js 74 READ_ONLY | DONT_ENUM | DONT_DELETE);
typedarray.js 819 utils.InstallFunctions(GlobalTypedArray, DONT_ENUM, [
825 utils.InstallFunctions(GlobalTypedArray.prototype, DONT_ENUM, [
849 DONT_ENUM);
859 READ_ONLY | DONT_ENUM | DONT_DELETE);
862 "constructor", global.NAME, DONT_ENUM);
865 READ_ONLY | DONT_ENUM | DONT_DELETE);
promise.js 127 utils.InstallFunctions(GlobalPromise, DONT_ENUM, [
string.js 284 utils.InstallFunctions(GlobalString, DONT_ENUM, [
289 utils.InstallFunctions(GlobalString.prototype, DONT_ENUM, [
macros.py 33 define DONT_ENUM = 2;
  /external/v8/src/
bootstrapper.cc 365 PropertyAttributes attributes = DONT_ENUM) {
374 PropertyAttributes attributes = DONT_ENUM) {
417 PropertyAttributes attributes = DONT_ENUM;
442 PropertyAttributes attrs = DONT_ENUM) {
452 PropertyAttributes attrs = DONT_ENUM) {
502 JSObject::DefineAccessor(base, property_name, getter, setter, DONT_ENUM)
526 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY));
661 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY))
730 iterator_prototype_iterator, DONT_ENUM);
745 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY))
    [all...]
property-descriptor.h 108 (has_enumerable() && !enumerable() ? DONT_ENUM : NONE) |
property-details.h 21 DONT_ENUM = ::v8::DontEnum,
24 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
49 STATIC_ASSERT(ONLY_ENUMERABLE == static_cast<PropertyFilter>(DONT_ENUM));
326 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
property.cc 19 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
factory.cc     [all...]
lookup.cc 329 attributes = static_cast<PropertyAttributes>(attributes | DONT_ENUM);
467 attributes = static_cast<PropertyAttributes>(attributes | DONT_ENUM);
    [all...]
  /external/v8/src/runtime/
runtime-utils.h 99 CHECK((args.smi_at(index) & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); \
runtime-classes.cc 156 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
169 constructor, DONT_ENUM);
205 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY);
runtime-forin.cc 73 } else if (result.FromJust() & DONT_ENUM) {
  /external/v8/src/wasm/
wasm-js.cc 741 PropertyAttributes attributes = static_cast<PropertyAttributes>(DONT_ENUM);
816 PropertyAttributes attributes = static_cast<PropertyAttributes>(DONT_ENUM);
819 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)
    [all...]

Completed in 301 milliseconds

1 2