Home
last modified time | relevance | path

Searched refs:has_get (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()
98 bool has_get() const { return !get_.is_null(); } in has_get() function in v8::internal::PropertyDescriptor
H A Dproperty-descriptor.cc105 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptorFastPath()
166 if (has_get()) { in ToObject()
288 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptor()
324 if (!desc->has_get()) { in CompletePropertyDescriptor()
355 PropertyDescriptorObject::HasGetBit::encode(has_get()) | in ToPropertyDescriptorObject()
361 if (has_get()) obj->set_get(*get_); in ToPropertyDescriptorObject()
H A Djs-objects.cc1475 desc->has_get() in ValidateAndApplyPropertyDescriptor()
1500 (!desc->has_get() || in ValidateAndApplyPropertyDescriptor()
1501 (current->has_get() && current->get()->SameValue(*desc->get()))) && in ValidateAndApplyPropertyDescriptor()
1602 if (desc->has_get() && !desc->get()->SameValue(*current->get())) { in ValidateAndApplyPropertyDescriptor()
1653 desc->has_get() in ValidateAndApplyPropertyDescriptor()
1655 : current->has_get() in ValidateAndApplyPropertyDescriptor()
/third_party/node/deps/v8/src/debug/
H A Ddebug-property-iterator.cc156 descriptor.has_get() ? Utils::ToLocal(descriptor.get()) in descriptor()
/third_party/node/deps/v8/include/v8-include/
H A Dv8-object.h109 bool has_get() const;
/third_party/node/deps/v8/include/
H A Dv8-object.h111 bool has_get() const;
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-object.cc136 if (component == ACCESSOR_GETTER && desc.has_get()) { 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()
615 desc.has_get() ? desc.get() : Undefined(isolate).As<Value>(), in PropertyDefinerCallback()
/third_party/node/deps/v8/src/api/
H A Dapi.cc4394 DCHECK(private_->desc.has_get()); in get()
4406 bool v8::PropertyDescriptor::has_get() const { in has_get() function in v8::v8::PropertyDescriptor
4407 return private_->desc.has_get(); in has_get()

Completed in 37 milliseconds