Searched refs:PropertyDescriptorObject (Results 1 – 10 of 10) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | property-descriptor.cc | 342 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 …]
|
D | property-descriptor-object.h | 19 class PropertyDescriptorObject 20 : public TorqueGeneratedPropertyDescriptorObject<PropertyDescriptorObject, 40 TQ_OBJECT_CONSTRUCTORS(PropertyDescriptorObject)
|
D | property-descriptor.h | 16 class PropertyDescriptorObject; variable 46 Handle<PropertyDescriptorObject> ToPropertyDescriptorObject(Isolate* isolate);
|
D | property-descriptor-object-inl.h | 19 TQ_OBJECT_CONSTRUCTORS_IMPL(PropertyDescriptorObject)
|
D | property-descriptor-object.tq | 19 extern class PropertyDescriptorObject extends Struct {
|
D | objects-definitions.h | 156 V(_, PROPERTY_DESCRIPTOR_OBJECT_TYPE, PropertyDescriptorObject, \
|
D | objects.h | 216 class PropertyDescriptorObject; variable
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-object-gen.cc | 39 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/ |
D | factory.h | 188 Handle<PropertyDescriptorObject> NewPropertyDescriptorObject();
|
D | factory.cc | 612 Handle<PropertyDescriptorObject> Factory::NewPropertyDescriptorObject() { in NewPropertyDescriptorObject() 613 auto object = NewStructInternal<PropertyDescriptorObject>( in NewPropertyDescriptorObject()
|