Home
last modified time | relevance | path

Searched refs:PropertyDescriptorObject (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/
Dproperty-descriptor.cc344 Handle<PropertyDescriptorObject> PropertyDescriptor::ToPropertyDescriptorObject( in ToPropertyDescriptorObject()
346 Handle<PropertyDescriptorObject> obj = Handle<PropertyDescriptorObject>::cast( in ToPropertyDescriptorObject()
347 isolate->factory()->NewFixedArray(PropertyDescriptorObject::kLength)); in ToPropertyDescriptorObject()
350 PropertyDescriptorObject::IsEnumerableBit::encode(enumerable_) | in ToPropertyDescriptorObject()
351 PropertyDescriptorObject::HasEnumerableBit::encode(has_enumerable_) | in ToPropertyDescriptorObject()
352 PropertyDescriptorObject::IsConfigurableBit::encode(configurable_) | in ToPropertyDescriptorObject()
353 PropertyDescriptorObject::HasConfigurableBit::encode(has_configurable_) | in ToPropertyDescriptorObject()
354 PropertyDescriptorObject::IsWritableBit::encode(writable_) | in ToPropertyDescriptorObject()
355 PropertyDescriptorObject::HasWritableBit::encode(has_writable_) | in ToPropertyDescriptorObject()
356 PropertyDescriptorObject::HasValueBit::encode(has_value()) | in ToPropertyDescriptorObject()
[all …]
Dproperty-descriptor.h18 class PropertyDescriptorObject; variable
48 Handle<PropertyDescriptorObject> ToPropertyDescriptorObject(Isolate* isolate);
Dobjects.h190 class PropertyDescriptorObject; variable
870 V(PropertyDescriptorObject) \
1007 V(PropertyDescriptorObject, FIXED_ARRAY_TYPE) \
/external/v8/src/objects/
Dproperty-descriptor-object.h17 class PropertyDescriptorObject : public FixedArray {
35 DECL_CAST(PropertyDescriptorObject)
51 FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kValueIndex);
53 FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kFlagsIndex);
55 FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kGetIndex);
57 FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kSetIndex);
Dproperty-descriptor-object-inl.h17 CAST_ACCESSOR(PropertyDescriptorObject)
/external/v8/src/builtins/
Dbuiltins-object-gen.cc1621 desc, PropertyDescriptorObject::kFlagsOffset); in FromPropertyDescriptor()
1624 Word32And(flags, Int32Constant(PropertyDescriptorObject::kHasMask)); in FromPropertyDescriptor()
1631 PropertyDescriptorObject::kRegularAccessorPropertyBits)), in FromPropertyDescriptor()
1635 Int32Constant(PropertyDescriptorObject::kRegularDataPropertyBits)), in FromPropertyDescriptor()
1642 context, LoadObjectField(desc, PropertyDescriptorObject::kGetOffset), in FromPropertyDescriptor()
1643 LoadObjectField(desc, PropertyDescriptorObject::kSetOffset), in FromPropertyDescriptor()
1644 IsSetWord32<PropertyDescriptorObject::IsEnumerableBit>(flags), in FromPropertyDescriptor()
1645 IsSetWord32<PropertyDescriptorObject::IsConfigurableBit>(flags))); in FromPropertyDescriptor()
1652 context, LoadObjectField(desc, PropertyDescriptorObject::kValueOffset), in FromPropertyDescriptor()
1653 IsSetWord32<PropertyDescriptorObject::IsWritableBit>(flags), in FromPropertyDescriptor()
[all …]