Searched refs:DONT_DELETE (Results 1 – 14 of 14) sorted by relevance
/external/v8/src/js/ |
D | prologue.js | 44 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY; 71 UNDEFINED, DONT_ENUM | DONT_DELETE); 77 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
|
D | macros.py | 34 define DONT_DELETE = 4;
|
/external/v8/src/ |
D | property-details.h | 22 DONT_DELETE = ::v8::DontDelete, enumerator 24 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE, 26 SEALED = DONT_DELETE, 50 STATIC_ASSERT(ONLY_CONFIGURABLE == static_cast<PropertyFilter>(DONT_DELETE)); 327 bool IsConfigurable() const { return (attributes() & DONT_DELETE) == 0; } in IsConfigurable() 346 (DONT_DELETE << AttributesField::kShift);
|
D | property-descriptor.h | 112 (has_configurable() && !configurable() ? DONT_DELETE : NONE) | in ToAttributes()
|
D | property.cc | 21 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable in operator <<()
|
D | bootstrapper.cc | 592 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InstallConstant() 688 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY)) in GetThrowTypeErrorIntrinsic() 1593 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY), in InitializeGlobal() 1687 DONT_ENUM | DONT_DELETE); in InitializeGlobal() 1887 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InitializeGlobal() 1891 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InitializeGlobal() 1894 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InitializeGlobal() 1899 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InitializeGlobal() 1903 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InitializeGlobal() 1908 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InitializeGlobal() [all …]
|
D | elements.cc | 2984 return PropertyDetails(kData, DONT_DELETE, PropertyCellType::kNoCell); in GetDetailsImpl() 2989 return PropertyDetails(kData, DONT_DELETE, PropertyCellType::kNoCell); in GetDetailsImpl() 4260 static_cast<PropertyAttributes>(READ_ONLY | DONT_DELETE); in GetDetailsImpl()
|
D | objects.cc | 7385 attrs | (desc->configurable() ? NONE : DONT_DELETE)); in ValidateAndApplyPropertyDescriptor() 7388 attrs | (current->configurable() ? NONE : DONT_DELETE)); in ValidateAndApplyPropertyDescriptor() 7477 if ((attributes.FromJust() & DONT_DELETE) != 0) { in CreateDataProperty() 7974 desc->set_configurable((attrs & DONT_DELETE) == 0); in GetOwnPropertyDescriptor() 10228 int mask = DONT_DELETE | DONT_ENUM; in CopyUpToAddAttributes()
|
/external/v8/src/runtime/ |
D | runtime-utils.h | 99 CHECK_EQ(args.smi_at(index) & ~(READ_ONLY | DONT_ENUM | DONT_DELETE), 0); \
|
D | runtime-scopes.cc | 83 if ((old_attributes & DONT_DELETE) != 0) { in DeclareGlobal() 178 if (!is_eval) attr |= DONT_DELETE; in DeclareGlobals() 651 if ((maybe.FromJust() & DONT_DELETE) != 0) { in FindNameClash()
|
/external/v8/src/objects/ |
D | literal-objects.cc | 477 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in BuildClassBoilerplate() 483 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in BuildClassBoilerplate()
|
D | module.cc | 887 PropertyAttributes attr = DONT_DELETE; in GetModuleNamespace()
|
D | intl-objects.cc | 2352 static_cast<PropertyAttributes>(READ_ONLY | DONT_DELETE); in CreateReadOnlyArray()
|
/external/v8/src/heap/ |
D | factory.cc | 3913 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in CreateSloppyFunctionMap() 3915 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE); in CreateSloppyFunctionMap() 3989 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE); in CreateStrictFunctionMap() 3991 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in CreateStrictFunctionMap() 4054 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in CreateClassFunctionMap()
|