Home
last modified time | relevance | path

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

/external/v8/src/objects/
Dproperty-descriptor.h35 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() function
111 (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()
289 (desc->has_value() || desc->has_writable())) { in ToPropertyDescriptor()
319 if (!desc->has_writable()) desc->set_writable(false); in CompletePropertyDescriptor()
Dproperty-descriptor-object.tq13 has_writable: bool: 1 bit;
Djs-array-buffer.cc236 (desc->has_writable() && !desc->writable())) { in DefineOwnProperty()
246 if (!desc->has_writable()) desc->set_writable(true); in DefineOwnProperty()
Djs-objects.cc1172 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()
Dobjects.cc3209 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()
/external/v8/src/debug/
Ddebug-property-iterator.cc123 descriptor.writable(), descriptor.has_writable(), in descriptor()
Ddebug-interface.h592 bool has_writable : 1; member
/external/v8/src/inspector/
Dvalue-mirror.cc1492 writable = descriptor.has_writable ? descriptor.writable : false; in getProperties()
/external/v8/src/api/
Dapi.cc4196 DCHECK(private_->desc.has_writable()); in writable()
4200 bool v8::PropertyDescriptor::has_writable() const { in has_writable() function in v8::v8::PropertyDescriptor
4201 return private_->desc.has_writable(); in has_writable()
/external/v8/include/
Dv8.h4796 bool has_writable() const;