Home
last modified time | relevance | path

Searched refs:DONT_ENUM (Results 1 – 25 of 33) sorted by relevance

12

/third_party/node/deps/v8/src/objects/
Dliteral-objects.cc59 d = Descriptor::DataConstant(name, value, DONT_ENUM); in AddToDescriptorArrayTemplate()
65 d = Descriptor::AccessorConstant(name, pair, DONT_ENUM); in AddToDescriptorArrayTemplate()
73 Descriptor d = Descriptor::DataConstant(name, value, DONT_ENUM); in AddToDescriptorArrayTemplate()
85 Descriptor d = Descriptor::AccessorConstant(name, new_pair, DONT_ENUM); in AddToDescriptorArrayTemplate()
177 DONT_ENUM, PropertyDetails::kConstIfDictConstnessTracking, enum_order); in AddToDictionaryTemplate()
226 PropertyKind::kData, DONT_ENUM, in AddToDictionaryTemplate()
288 PropertyKind::kData, DONT_ENUM, in AddToDictionaryTemplate()
301 PropertyKind::kData, DONT_ENUM, in AddToDictionaryTemplate()
329 PropertyKind::kAccessor, DONT_ENUM, in AddToDictionaryTemplate()
346 PropertyKind::kAccessor, DONT_ENUM, in AddToDictionaryTemplate()
[all …]
Dproperty-details.h21 DONT_ENUM = ::v8::DontEnum, enumerator
24 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
60 STATIC_ASSERT(ONLY_ENUMERABLE == static_cast<PropertyFilter>(DONT_ENUM));
79 STATIC_ASSERT((ALL_ATTRIBUTES_MASK == (READ_ONLY | DONT_ENUM | DONT_DELETE)) ==
390 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; } in IsDontEnum()
408 (DONT_ENUM << AttributesField::kShift);
Dproperty-descriptor.h109 (has_enumerable() && !enumerable() ? DONT_ENUM : NONE) | in ToAttributes()
Dproperty.cc42 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable in operator <<()
Dlookup.cc506 (property_details_.attributes() & DONT_ENUM) != in ReconfigureDataProperty()
507 (attributes & DONT_ENUM))) { in ReconfigureDataProperty()
574 attributes = static_cast<PropertyAttributes>(attributes | DONT_ENUM); in PrepareTransitionToDataProperty()
747 attributes = static_cast<PropertyAttributes>(attributes | DONT_ENUM); in TransitionToAccessorProperty()
Djs-objects.cc1097 if (attrs & DONT_ENUM) continue; in DefineProperties()
1267 if (!result.is_null()) return Just(DONT_ENUM); in GetPropertyAttributesWithInterceptorInternal()
1619 attrs | (desc->enumerable() ? NONE : DONT_ENUM)); in ValidateAndApplyPropertyDescriptor()
1622 attrs | (current->enumerable() ? NONE : DONT_ENUM)); in ValidateAndApplyPropertyDescriptor()
1883 desc->set_enumerable((attrs & DONT_ENUM) == 0); in GetOwnPropertyDescriptor()
3542 descriptor.set_enumerable((attributes & DONT_ENUM) != 0); in DefineOwnPropertyIgnoreAttributes()
Dtransitions.cc268 PropertyAttributes attributes = name->IsPrivate() ? DONT_ENUM : NONE; in FindTransitionToDataProperty()
Djs-function.cc1177 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)), in SetName()
Dkeys.cc687 if ((value & DONT_ENUM) == 0) { in FilterForEnumerableProperties()
Dobjects.cc3612 desc->ToAttributes() != DONT_ENUM) { in SetPrivateSymbol()
3626 DCHECK_EQ(DONT_ENUM, it.property_attributes()); in SetPrivateSymbol()
3634 PropertyDetails details(PropertyKind::kData, DONT_ENUM, in SetPrivateSymbol()
3894 int mask = DONT_DELETE | DONT_ENUM; in CopyUpToAddAttributes()
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc502 JSObject::AddProperty(isolate, target, name, function, DONT_ENUM); in InstallFunction()
569 JSObject::AddProperty(isolate, base, internalized_name, fun, DONT_ENUM); in InstallFunctionWithBuiltinId()
575 int len, bool adapt, PropertyAttributes attrs = DONT_ENUM) { in SimpleInstallFunction()
589 PropertyAttributes attrs = DONT_ENUM) { in InstallFunctionAtSymbol()
615 JSObject::DefineAccessor(base, name, getter, setter, DONT_ENUM).Check(); in SimpleInstallGetterSetter()
639 JSObject::DefineAccessor(base, property_name, getter, setter, DONT_ENUM) in SimpleInstallGetter()
656 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InstallConstant()
681 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in InstallToStringTag()
764 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY)) in GetThrowTypeErrorIntrinsic()
771 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY)) in GetThrowTypeErrorIntrinsic()
[all …]
/third_party/node/deps/v8/src/runtime/
Druntime-forin.cc79 } else if (result.FromJust() & DONT_ENUM) { in HasEnumerableProperty()
105 DCHECK_EQ(0, result.FromJust() & DONT_ENUM); in HasEnumerableProperty()
Druntime-object.cc506 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in RUNTIME_FUNCTION()
1153 ? PropertyAttributes::DONT_ENUM in RUNTIME_FUNCTION()
Druntime-scopes.cc92 if (old_attributes & READ_ONLY || old_attributes & DONT_ENUM || in DeclareGlobal()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-error.cc63 isolate, JSObject::SetAccessor(object, name, error_stack, DONT_ENUM)); in BUILTIN()
Daggregate-error.tq35 SmiConstant(PropertyAttributes::DONT_ENUM));
Dbuiltins-object.cc35 return isolate->heap()->ToBoolean((maybe.FromJust() & DONT_ENUM) == 0); in BUILTIN()
Dpromise-any.tq396 SmiConstant(PropertyAttributes::DONT_ENUM));
Dbuiltins-object-gen.cc150 return IsNotSetWord32(attributes, PropertyAttributes::DONT_ENUM); in IsPropertyEnumerable()
/third_party/node/deps/v8/src/ic/
Dhandler-configuration.cc233 DCHECK_EQ(DONT_ENUM, details.attributes()); in StoreOwnTransition()
268 DCHECK_EQ(DONT_ENUM, details.attributes()); in StoreTransition()
/third_party/node/deps/v8/src/execution/
Dmessages.cc235 frame, DONT_ENUM), in GetStackFrames()
549 err, isolate->factory()->message_string(), msg_string, DONT_ENUM), in Construct()
573 err, cause_string, cause, DONT_ENUM), in Construct()
/third_party/node/deps/v8/src/wasm/
Dwasm-js.cc2693 return InstallFunc(isolate, object, str, func, 1, true, DONT_ENUM, in InstallConstructorFunc()
2757 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); in SetupConstructor()
2793 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); in Install()
2813 JSObject::AddProperty(isolate, global, name, webassembly, DONT_ENUM); in Install()
2971 compile_error, DONT_ENUM); in Install()
2976 DONT_ENUM); in Install()
2981 runtime_error, DONT_ENUM); in Install()
3031 &it, tag_constructor, DONT_ENUM, Just(kDontThrow)); in InstallConditionalFeatures()
/third_party/node/deps/v8/src/heap/
Dfactory.cc2267 DONT_ENUM); in DEFINE_ERROR()
3708 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in CreateSloppyFunctionMap()
3710 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE); in CreateSloppyFunctionMap()
3712 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); in CreateSloppyFunctionMap()
3797 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE); in CreateStrictFunctionMap()
3799 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in CreateStrictFunctionMap()
3801 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); in CreateStrictFunctionMap()
3861 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in CreateClassFunctionMap()
3863 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); in CreateClassFunctionMap()
/third_party/node/deps/v8/src/api/
Dapi-natives.cc711 DONT_ENUM); in CreateApiFunction()
/third_party/node/deps/v8/src/compiler/
Daccess-info.cc858 attrs = DONT_ENUM; in ComputePropertyAccessInfo()

12