/third_party/node/deps/v8/src/objects/ |
D | literal-objects.cc | 59 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 …]
|
D | property-details.h | 21 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);
|
D | property-descriptor.h | 109 (has_enumerable() && !enumerable() ? DONT_ENUM : NONE) | in ToAttributes()
|
D | property.cc | 42 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable in operator <<()
|
D | lookup.cc | 506 (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()
|
D | js-objects.cc | 1097 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()
|
D | transitions.cc | 268 PropertyAttributes attributes = name->IsPrivate() ? DONT_ENUM : NONE; in FindTransitionToDataProperty()
|
D | js-function.cc | 1177 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)), in SetName()
|
D | keys.cc | 687 if ((value & DONT_ENUM) == 0) { in FilterForEnumerableProperties()
|
D | objects.cc | 3612 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/ |
D | bootstrapper.cc | 502 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/ |
D | runtime-forin.cc | 79 } else if (result.FromJust() & DONT_ENUM) { in HasEnumerableProperty() 105 DCHECK_EQ(0, result.FromJust() & DONT_ENUM); in HasEnumerableProperty()
|
D | runtime-object.cc | 506 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in RUNTIME_FUNCTION() 1153 ? PropertyAttributes::DONT_ENUM in RUNTIME_FUNCTION()
|
D | runtime-scopes.cc | 92 if (old_attributes & READ_ONLY || old_attributes & DONT_ENUM || in DeclareGlobal()
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-error.cc | 63 isolate, JSObject::SetAccessor(object, name, error_stack, DONT_ENUM)); in BUILTIN()
|
D | aggregate-error.tq | 35 SmiConstant(PropertyAttributes::DONT_ENUM));
|
D | builtins-object.cc | 35 return isolate->heap()->ToBoolean((maybe.FromJust() & DONT_ENUM) == 0); in BUILTIN()
|
D | promise-any.tq | 396 SmiConstant(PropertyAttributes::DONT_ENUM));
|
D | builtins-object-gen.cc | 150 return IsNotSetWord32(attributes, PropertyAttributes::DONT_ENUM); in IsPropertyEnumerable()
|
/third_party/node/deps/v8/src/ic/ |
D | handler-configuration.cc | 233 DCHECK_EQ(DONT_ENUM, details.attributes()); in StoreOwnTransition() 268 DCHECK_EQ(DONT_ENUM, details.attributes()); in StoreTransition()
|
/third_party/node/deps/v8/src/execution/ |
D | messages.cc | 235 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/ |
D | wasm-js.cc | 2693 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/ |
D | factory.cc | 2267 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/ |
D | api-natives.cc | 711 DONT_ENUM); in CreateApiFunction()
|
/third_party/node/deps/v8/src/compiler/ |
D | access-info.cc | 858 attrs = DONT_ENUM; in ComputePropertyAccessInfo()
|