Home
last modified time | relevance | path

Searched refs:has_writable (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dproperty-descriptor.h36 return desc->has_value() || desc->has_writable(); in IsDataDescriptor()
56 return !has_enumerable() && !has_configurable() && !has_writable() && in is_empty()
62 !has_writable() && has_get() && has_set(); in IsRegularAccessorProperty()
67 has_writable() && !has_get() && !has_set(); in IsRegularDataProperty()
93 bool has_writable() const { return has_writable_; } in has_writable() function
110 (has_writable() && !writable() ? READ_ONLY : NONE)); in ToAttributes()
Dproperty-descriptor.cc98 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptorFastPath()
155 if (has_writable()) { in ToObject()
283 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptor()
314 if (!desc->has_writable()) desc->set_writable(false); in CompletePropertyDescriptor()
Dobjects.cc1735 if (desc.has_writable()) { in DefinePropertyWithInterceptorInternal()
6687 if (!desc->has_writable()) desc->set_writable(false); in ValidateAndApplyPropertyDescriptor()
6736 (!desc->has_writable() || in ValidateAndApplyPropertyDescriptor()
6737 (current->has_writable() && current->writable() == desc->writable())) && in ValidateAndApplyPropertyDescriptor()
6801 if (!current->writable() && desc->has_writable() && desc->writable()) { in ValidateAndApplyPropertyDescriptor()
6867 if (desc->has_writable()) { in ValidateAndApplyPropertyDescriptor()
7010 if (index >= old_len && old_len_desc.has_writable() && in DefineOwnProperty()
7131 if (!new_len_desc->has_writable() || new_len_desc->writable()) { in ArraySetLength()
Dapi.cc4078 DCHECK(private_->desc.has_writable()); in writable()
4082 bool v8::PropertyDescriptor::has_writable() const { in has_writable() function in v8::v8::PropertyDescriptor
4083 return private_->desc.has_writable(); in has_writable()
/external/v8/include/
Dv8.h3851 bool has_writable() const;