Searched refs:has_writable (Results 1 – 6 of 6) sorted by relevance
37 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() function113 (has_writable() && !writable() ? READ_ONLY : NONE)); in ToAttributes()
106 (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()
1919 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()
4232 DCHECK(private_->desc.has_writable()); in writable()4236 bool v8::PropertyDescriptor::has_writable() const { in has_writable() function in v8::v8::PropertyDescriptor4237 return private_->desc.has_writable(); in has_writable()
256 (desc->has_writable() && !desc->writable())) { in DefineOwnProperty()266 if (!desc->has_writable()) desc->set_writable(true); in DefineOwnProperty()
4317 bool has_writable() const;