Home
last modified time | relevance | path

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

/external/v8/src/
Dproperty-descriptor.h37 return desc->has_value() || desc->has_writable(); in IsDataDescriptor()
59 return !has_enumerable() && !has_configurable() && !has_writable() && in is_empty()
65 !has_writable() && has_get() && has_set(); in IsRegularAccessorProperty()
70 has_writable() && !has_get() && !has_set(); in IsRegularDataProperty()
96 bool has_writable() const { return has_writable_; } in has_writable() function
113 (has_writable() && !writable() ? READ_ONLY : NONE)); in ToAttributes()
Dproperty-descriptor.cc106 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptorFastPath()
162 if (has_writable()) { in ToObject()
290 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptor()
321 if (!desc->has_writable()) desc->set_writable(false); in CompletePropertyDescriptor()
Dobjects.cc1919 if (desc.has_writable()) { in DefinePropertyWithInterceptorInternal()
7209 if (!desc->has_writable()) desc->set_writable(false); in ValidateAndApplyPropertyDescriptor()
7258 (!desc->has_writable() || in ValidateAndApplyPropertyDescriptor()
7259 (current->has_writable() && current->writable() == desc->writable())) && in ValidateAndApplyPropertyDescriptor()
7326 if (!current->writable() && desc->has_writable() && desc->writable()) { in ValidateAndApplyPropertyDescriptor()
7392 if (desc->has_writable()) { in ValidateAndApplyPropertyDescriptor()
7542 if (index >= old_len && old_len_desc.has_writable() && in DefineOwnProperty()
7663 if (!new_len_desc->has_writable() || new_len_desc->writable()) { in ArraySetLength()
Dapi.cc4232 DCHECK(private_->desc.has_writable()); in writable()
4236 bool v8::PropertyDescriptor::has_writable() const { in has_writable() function in v8::v8::PropertyDescriptor
4237 return private_->desc.has_writable(); in has_writable()
/external/v8/src/objects/
Djs-array-buffer.cc256 (desc->has_writable() && !desc->writable())) { in DefineOwnProperty()
266 if (!desc->has_writable()) desc->set_writable(true); in DefineOwnProperty()
/external/v8/include/
Dv8.h4317 bool has_writable() const;