Searched refs:ACCESSOR_CONSTANT (Results 1 – 13 of 13) sorted by relevance
/external/v8/src/ |
D | property.h | 105 : Descriptor(key, foreign, attributes, ACCESSOR_CONSTANT, in AccessorConstantDescriptor()
|
D | property-descriptor.cc | 72 case ACCESSOR_CONSTANT: in ToPropertyDescriptorFastPath()
|
D | lookup.cc | 349 PropertyDetails details(attributes, ACCESSOR_CONSTANT, 0, in TransitionToAccessorPair() 454 DCHECK_EQ(v8::internal::ACCESSOR_CONSTANT, property_details_.type()); in GetAccessorIndex()
|
D | property-details.h | 82 ACCESSOR_CONSTANT = (kDescriptor << 1) | kAccessor enumerator
|
D | objects-printer.cc | 300 case ACCESSOR_CONSTANT: in PrintProperties()
|
D | factory.cc | 1557 DCHECK_EQ(ACCESSOR_CONSTANT, details.type()); in NewJSGlobalObject() 1558 PropertyDetails d(details.attributes(), ACCESSOR_CONSTANT, i + 1, in NewJSGlobalObject()
|
D | objects.cc | 2942 if (old_details.type() == ACCESSOR_CONSTANT) { in MigrateFastToFast() 3974 case ACCESSOR_CONSTANT: { in TryUpdate() 5591 PropertyDetails d(details.attributes(), ACCESSOR_CONSTANT, i + 1, in MigrateFastToSlow() 5596 case ACCESSOR_CONSTANT: { in MigrateFastToSlow() 5598 PropertyDetails d(details.attributes(), ACCESSOR_CONSTANT, i + 1, in MigrateFastToSlow() 5768 } else if (type == ACCESSOR_CONSTANT) { in MigrateSlowToFast() 7835 if ((attributes & READ_ONLY) && details.type() == ACCESSOR_CONSTANT) { in ApplyAttributesToDictionary() 9782 case ACCESSOR_CONSTANT: in CanHoldValue() 9944 if (old_details.type() != ACCESSOR_CONSTANT) { in TransitionToAccessorProperty() 10059 if (details.type() != ACCESSOR_CONSTANT || !value->IsAccessorPair()) { in CopyUpToAddAttributes() [all …]
|
D | bootstrapper.cc | 3244 case ACCESSOR_CONSTANT: { in TransferNamedProperties() 3254 PropertyDetails d(details.attributes(), ACCESSOR_CONSTANT, i + 1, in TransferNamedProperties()
|
D | objects-inl.h | 2997 DCHECK(GetType(descriptor_number) == ACCESSOR_CONSTANT); in GetCallbacksObject() 3003 DCHECK(GetType(descriptor_number) == ACCESSOR_CONSTANT); in GetCallbacks()
|
/external/v8/test/cctest/ |
D | test-field-type-tracking.cc | 117 if (types_[i] == ACCESSOR_CONSTANT) { in Print() 132 case ACCESSOR_CONSTANT: in Print() 181 Init(index, ACCESSOR_CONSTANT, attrs, Representation::Tagged(), getter); in SetAccessorConstant() 188 CHECK_EQ(ACCESSOR_CONSTANT, types_[index]); in SetAccessorConstantComponent() 242 case ACCESSOR_CONSTANT: { in Check()
|
D | test-transitions.cc | 37 CheckPropertyDetailsFieldsConsistency(ACCESSOR_CONSTANT, kAccessor, in TEST()
|
/external/v8/src/runtime/ |
D | runtime-scopes.cc | 72 old_details.type() == ACCESSOR_CONSTANT) { in DeclareGlobals()
|
/external/v8/src/crankshaft/ |
D | hydrogen.h | 2620 return !IsTransition() && details_.type() == ACCESSOR_CONSTANT; in IsAccessorConstant()
|