Searched refs:has_writable (Results 1 – 5 of 5) sorted by relevance
36 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() function110 (has_writable() && !writable() ? READ_ONLY : NONE)); in ToAttributes()
105 (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()
1772 if (desc.has_writable()) { in DefinePropertyWithInterceptorInternal()6292 if (!desc->has_writable()) desc->set_writable(false); in ValidateAndApplyPropertyDescriptor()6341 (!desc->has_writable() || in ValidateAndApplyPropertyDescriptor()6342 (current->has_writable() && current->writable() == desc->writable())) && in ValidateAndApplyPropertyDescriptor()6406 if (!current->writable() && desc->has_writable() && desc->writable()) { in ValidateAndApplyPropertyDescriptor()6472 if (desc->has_writable()) { in ValidateAndApplyPropertyDescriptor()6614 if (index >= old_len && old_len_desc.has_writable() && in DefineOwnProperty()6735 if (!new_len_desc->has_writable() || new_len_desc->writable()) { in ArraySetLength()17032 (desc->has_writable() && !desc->writable())) { in DefineOwnProperty()17042 if (!desc->has_writable()) desc->set_writable(true); in DefineOwnProperty()
4240 DCHECK(private_->desc.has_writable()); in writable()4244 bool v8::PropertyDescriptor::has_writable() const { in has_writable() function in v8::v8::PropertyDescriptor4245 return private_->desc.has_writable(); in has_writable()
3891 bool has_writable() const;