Home
last modified time | relevance | path

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

/external/v8/src/
Dproperty-descriptor.h31 return desc->has_get() || desc->has_set(); in IsAccessorDescriptor()
57 !has_value() && !has_get() && !has_set(); in is_empty()
62 !has_writable() && has_get() && has_set(); in IsRegularAccessorProperty()
67 has_writable() && !has_get() && !has_set(); in IsRegularDataProperty()
97 bool has_get() const { return !get_.is_null(); } in has_get() function
Dproperty-descriptor.cc104 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()
Dobjects.cc6316 desc->has_get() in ValidateAndApplyPropertyDescriptor()
6343 (!desc->has_get() || in ValidateAndApplyPropertyDescriptor()
6344 (current->has_get() && current->get()->SameValue(*desc->get()))) && in ValidateAndApplyPropertyDescriptor()
6441 if (desc->has_get() && !desc->get()->SameValue(*current->get())) { in ValidateAndApplyPropertyDescriptor()
6493 desc->has_get() in ValidateAndApplyPropertyDescriptor()
6495 : current->has_get() in ValidateAndApplyPropertyDescriptor()
Dapi.cc4220 DCHECK(private_->desc.has_get()); in get()
4232 bool v8::PropertyDescriptor::has_get() const { in has_get() function in v8::v8::PropertyDescriptor
4233 return private_->desc.has_get(); in has_get()
/external/v8/src/builtins/
Dbuiltins-object.cc494 if (component == ACCESSOR_GETTER && desc.has_get()) { in ObjectLookupAccessor()
/external/v8/include/
Dv8.h3878 bool has_get() const;