Home
last modified time | relevance | path

Searched refs:has_get (Results 1 – 5 of 5) 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.cc97 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptorFastPath()
159 if (has_get()) { in ToObject()
282 if ((desc->has_get() || desc->has_set()) && in ToPropertyDescriptor()
319 if (!desc->has_get()) { in CompletePropertyDescriptor()
Dobjects.cc6711 desc->has_get() in ValidateAndApplyPropertyDescriptor()
6738 (!desc->has_get() || in ValidateAndApplyPropertyDescriptor()
6739 (current->has_get() && current->get()->SameValue(*desc->get()))) && in ValidateAndApplyPropertyDescriptor()
6836 if (desc->has_get() && !desc->get()->SameValue(*current->get())) { in ValidateAndApplyPropertyDescriptor()
6888 desc->has_get() in ValidateAndApplyPropertyDescriptor()
6890 : current->has_get() in ValidateAndApplyPropertyDescriptor()
Dapi.cc4058 DCHECK(private_->desc.has_get()); in get()
4070 bool v8::PropertyDescriptor::has_get() const { in has_get() function in v8::v8::PropertyDescriptor
4071 return private_->desc.has_get(); in has_get()
/external/v8/include/
Dv8.h3838 bool has_get() const;