Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/objects/
Dproperty-descriptor.cc342 Handle<PropertyDescriptorObject> PropertyDescriptor::ToPropertyDescriptorObject( in ToPropertyDescriptorObject()
344 Handle<PropertyDescriptorObject> obj = in ToPropertyDescriptorObject()
348 PropertyDescriptorObject::IsEnumerableBit::encode(enumerable_) | in ToPropertyDescriptorObject()
349 PropertyDescriptorObject::HasEnumerableBit::encode(has_enumerable_) | in ToPropertyDescriptorObject()
350 PropertyDescriptorObject::IsConfigurableBit::encode(configurable_) | in ToPropertyDescriptorObject()
351 PropertyDescriptorObject::HasConfigurableBit::encode(has_configurable_) | in ToPropertyDescriptorObject()
352 PropertyDescriptorObject::IsWritableBit::encode(writable_) | in ToPropertyDescriptorObject()
353 PropertyDescriptorObject::HasWritableBit::encode(has_writable_) | in ToPropertyDescriptorObject()
354 PropertyDescriptorObject::HasValueBit::encode(has_value()) | in ToPropertyDescriptorObject()
355 PropertyDescriptorObject::HasGetBit::encode(has_get()) | in ToPropertyDescriptorObject()
[all …]
Dproperty-descriptor-object.h19 class PropertyDescriptorObject
20 : public TorqueGeneratedPropertyDescriptorObject<PropertyDescriptorObject,
40 TQ_OBJECT_CONSTRUCTORS(PropertyDescriptorObject)
Dproperty-descriptor.h16 class PropertyDescriptorObject; variable
46 Handle<PropertyDescriptorObject> ToPropertyDescriptorObject(Isolate* isolate);
Dproperty-descriptor-object-inl.h19 TQ_OBJECT_CONSTRUCTORS_IMPL(PropertyDescriptorObject)
Dproperty-descriptor-object.tq19 extern class PropertyDescriptorObject extends Struct {
Dobjects-definitions.h156 V(_, PROPERTY_DESCRIPTOR_OBJECT_TYPE, PropertyDescriptorObject, \
Dobjects.h216 class PropertyDescriptorObject; variable
/third_party/node/deps/v8/src/builtins/
Dbuiltins-object-gen.cc39 TNode<PropertyDescriptorObject> desc);
1382 TNode<PropertyDescriptorObject> desc_object = CAST(desc); in TF_BUILTIN()
1409 TNode<Context> context, TNode<PropertyDescriptorObject> desc) { in FromPropertyDescriptor()
1413 desc, PropertyDescriptorObject::kFlagsOffset); in FromPropertyDescriptor()
1416 Word32And(flags, Int32Constant(PropertyDescriptorObject::kHasMask)); in FromPropertyDescriptor()
1423 PropertyDescriptorObject::kRegularAccessorPropertyBits)), in FromPropertyDescriptor()
1427 Int32Constant(PropertyDescriptorObject::kRegularDataPropertyBits)), in FromPropertyDescriptor()
1434 context, LoadObjectField(desc, PropertyDescriptorObject::kGetOffset), in FromPropertyDescriptor()
1435 LoadObjectField(desc, PropertyDescriptorObject::kSetOffset), in FromPropertyDescriptor()
1436 IsSetWord32<PropertyDescriptorObject::IsEnumerableBit>(flags), in FromPropertyDescriptor()
[all …]
/third_party/node/deps/v8/src/heap/
Dfactory.h188 Handle<PropertyDescriptorObject> NewPropertyDescriptorObject();
Dfactory.cc612 Handle<PropertyDescriptorObject> Factory::NewPropertyDescriptorObject() { in NewPropertyDescriptorObject()
613 auto object = NewStructInternal<PropertyDescriptorObject>( in NewPropertyDescriptorObject()