Home
last modified time | relevance | path

Searched refs:has_configurable (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dproperty-descriptor.h56 return !has_enumerable() && !has_configurable() && !has_writable() && in is_empty()
61 return has_configurable() && has_enumerable() && !has_value() && in IsRegularAccessorProperty()
66 return has_configurable() && has_enumerable() && has_value() && in IsRegularDataProperty()
82 bool has_configurable() const { return has_configurable_; } in has_configurable() function
109 (has_configurable() && !configurable() ? DONT_DELETE : NONE) | in ToAttributes()
Dproperty-descriptor.cc169 if (has_configurable()) { in ToObject()
333 if (!desc->has_configurable()) desc->set_configurable(false); in CompletePropertyDescriptor()
Dobjects.cc1746 if (desc.has_configurable()) { in DefinePropertyWithInterceptorInternal()
6689 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
6709 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
6732 (!desc->has_configurable() || in ValidateAndApplyPropertyDescriptor()
6747 if (desc->has_configurable() && desc->configurable()) { in ValidateAndApplyPropertyDescriptor()
6858 if (desc->has_configurable()) { in ValidateAndApplyPropertyDescriptor()
7240 bool setting_config_false = desc->has_configurable() && !desc->configurable(); in DefineOwnProperty()
Dapi.cc4104 DCHECK(private_->desc.has_configurable()); in configurable()
4108 bool v8::PropertyDescriptor::has_configurable() const { in has_configurable() function in v8::v8::PropertyDescriptor
4109 return private_->desc.has_configurable(); in has_configurable()
/external/v8/include/
Dv8.h3848 bool has_configurable() const;