Home
last modified time | relevance | path

Searched refs:has_set (Results 1 - 10 of 10) sorted by relevance

/third_party/node/deps/v8/src/objects/
H A Dproperty-descriptor.h30 return desc->has_get() || desc->has_set(); in IsAccessorDescriptor()
58 !has_value() && !has_get() && !has_set(); in is_empty()
63 !has_writable() && has_get() && has_set(); in IsRegularAccessorProperty()
68 has_writable() && !has_get() && !has_set(); in IsRegularDataProperty()
102 bool has_set() const { return !set_.is_null(); } in has_set() function in v8::internal::PropertyDescriptor
H A Dproperty-descriptor.cc105 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptorFastPath()
169 if (has_set()) { in ToObject()
288 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptor()
329 if (!desc->has_set()) { in CompletePropertyDescriptor()
356 PropertyDescriptorObject::HasSetBit::encode(has_set()); in ToPropertyDescriptorObject()
362 if (has_set()) obj->set_set(*set_); in ToPropertyDescriptorObject()
H A Djs-objects.cc1479 desc->has_set() in ValidateAndApplyPropertyDescriptor()
1502 (!desc->has_set() || in ValidateAndApplyPropertyDescriptor()
1503 (current->has_set() && current->set()->SameValue(*desc->set())))) { in ValidateAndApplyPropertyDescriptor()
1594 if (desc->has_set() && !desc->set()->SameValue(*current->set())) { in ValidateAndApplyPropertyDescriptor()
1659 desc->has_set() in ValidateAndApplyPropertyDescriptor()
1661 : current->has_set() in ValidateAndApplyPropertyDescriptor()
/third_party/node/deps/v8/src/debug/
H A Ddebug-property-iterator.cc158 descriptor.has_set() ? Utils::ToLocal(descriptor.set()) in descriptor()
/third_party/node/deps/v8/include/v8-include/
H A Dv8-object.h111 bool has_set() const;
/third_party/node/deps/v8/include/
H A Dv8-object.h113 bool has_set() const;
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-object.cc139 if (component == ACCESSOR_SETTER && desc.has_set()) { in ObjectLookupAccessor()
/third_party/node/src/
H A Dnode_env_var.cc444 } else if (desc.has_get() || desc.has_set()) { in EnvDefiner()
H A Dnode_contextify.cc613 if (desc.has_get() || desc.has_set()) { in PropertyDefinerCallback()
616 desc.has_set() ? desc.set() : Undefined(isolate).As<Value>()); in PropertyDefinerCallback()
/third_party/node/deps/v8/src/api/
H A Dapi.cc4399 DCHECK(private_->desc.has_set()); in set()
4409 bool v8::PropertyDescriptor::has_set() const { in has_set() function in v8::v8::PropertyDescriptor
4410 return private_->desc.has_set(); in has_set()

Completed in 35 milliseconds