Searched refs:has_writable (Results 1 – 11 of 11) sorted by relevance
35 return desc->has_value() || desc->has_writable(); in IsDataDescriptor()57 return !has_enumerable() && !has_configurable() && !has_writable() && in is_empty()63 !has_writable() && has_get() && has_set(); in IsRegularAccessorProperty()68 has_writable() && !has_get() && !has_set(); in IsRegularDataProperty()94 bool has_writable() const { return has_writable_; } in has_writable() function111 (has_writable() && !writable() ? READ_ONLY : NONE)); in ToAttributes()
106 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptorFastPath()162 if (has_writable()) { in ToObject()289 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptor()319 if (!desc->has_writable()) desc->set_writable(false); in CompletePropertyDescriptor()
13 has_writable: bool: 1 bit;
236 (desc->has_writable() && !desc->writable())) { in DefineOwnProperty()246 if (!desc->has_writable()) desc->set_writable(true); in DefineOwnProperty()
1172 if (desc->has_writable()) { in DefinePropertyWithInterceptorInternal()1288 if (!desc->has_writable()) desc->set_writable(false); in ValidateAndApplyPropertyDescriptor()1337 (!desc->has_writable() || in ValidateAndApplyPropertyDescriptor()1338 (current->has_writable() && current->writable() == desc->writable())) && in ValidateAndApplyPropertyDescriptor()1405 if (!current->writable() && desc->has_writable() && desc->writable()) { in ValidateAndApplyPropertyDescriptor()1471 if (desc->has_writable()) { in ValidateAndApplyPropertyDescriptor()
3209 if (index >= old_len && old_len_desc.has_writable() && in DefineOwnProperty()3332 if (!new_len_desc->has_writable() || new_len_desc->writable()) { in ArraySetLength()3483 if (desc->has_writable() && !desc->writable()) { in DefineOwnProperty()3652 if (desc->has_writable() && !desc->writable()) { in GetOwnPropertyDescriptor()
123 descriptor.writable(), descriptor.has_writable(), in descriptor()
592 bool has_writable : 1; member
1492 writable = descriptor.has_writable ? descriptor.writable : false; in getProperties()
4196 DCHECK(private_->desc.has_writable()); in writable()4200 bool v8::PropertyDescriptor::has_writable() const { in has_writable() function in v8::v8::PropertyDescriptor4201 return private_->desc.has_writable(); in has_writable()
4796 bool has_writable() const;