Home
last modified time | relevance | path

Searched refs:DONT_DELETE (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/js/
Dprologue.js44 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);
Dmacros.py34 define DONT_DELETE = 4;
/external/v8/src/
Dproperty-details.h22 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);
Dproperty-descriptor.h112 (has_configurable() && !configurable() ? DONT_DELETE : NONE) | in ToAttributes()
Dproperty.cc21 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable in operator <<()
Dbootstrapper.cc592 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 …]
Delements.cc2984 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()
Dobjects.cc7385 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/
Druntime-utils.h99 CHECK_EQ(args.smi_at(index) & ~(READ_ONLY | DONT_ENUM | DONT_DELETE), 0); \
Druntime-scopes.cc83 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/
Dliteral-objects.cc477 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in BuildClassBoilerplate()
483 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in BuildClassBoilerplate()
Dmodule.cc887 PropertyAttributes attr = DONT_DELETE; in GetModuleNamespace()
Dintl-objects.cc2352 static_cast<PropertyAttributes>(READ_ONLY | DONT_DELETE); in CreateReadOnlyArray()
/external/v8/src/heap/
Dfactory.cc3913 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()