Home
last modified time | relevance | path

Searched refs:has_get (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Dproperty-descriptor.h32 return desc->has_get() || desc->has_set(); in IsAccessorDescriptor()
60 !has_value() && !has_get() && !has_set(); in is_empty()
65 !has_writable() && has_get() && has_set(); in IsRegularAccessorProperty()
70 has_writable() && !has_get() && !has_set(); in IsRegularDataProperty()
100 bool has_get() const { return !get_.is_null(); } in has_get() function
Dproperty-descriptor.cc105 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptorFastPath()
166 if (has_get()) { in ToObject()
289 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptor()
326 if (!desc->has_get()) { in CompletePropertyDescriptor()
357 PropertyDescriptorObject::HasGetBit::encode(has_get()) | in ToPropertyDescriptorObject()
365 has_get() ? *get_ : ReadOnlyRoots(isolate).the_hole_value()); in ToPropertyDescriptorObject()
Dobjects.cc7233 desc->has_get() in ValidateAndApplyPropertyDescriptor()
7260 (!desc->has_get() || in ValidateAndApplyPropertyDescriptor()
7261 (current->has_get() && current->get()->SameValue(*desc->get()))) && in ValidateAndApplyPropertyDescriptor()
7361 if (desc->has_get() && !desc->get()->SameValue(*current->get())) { in ValidateAndApplyPropertyDescriptor()
7412 desc->has_get() in ValidateAndApplyPropertyDescriptor()
7414 : current->has_get() in ValidateAndApplyPropertyDescriptor()
Dapi.cc4212 DCHECK(private_->desc.has_get()); in get()
4224 bool v8::PropertyDescriptor::has_get() const { in has_get() function in v8::v8::PropertyDescriptor
4225 return private_->desc.has_get(); in has_get()
/external/v8/src/builtins/
Dbuiltins-object.cc134 if (component == ACCESSOR_GETTER && desc.has_get()) { in ObjectLookupAccessor()
/external/v8/src/runtime/
Druntime-object.cc1077 if (descriptor.has_get()) TrySetNative(descriptor.get()); in RUNTIME_FUNCTION()
/external/v8/include/
Dv8.h4304 bool has_get() const;