Home
last modified time | relevance | path

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

/external/v8/src/
Dproperty-descriptor.h59 return !has_enumerable() && !has_configurable() && !has_writable() && in is_empty()
64 return has_configurable() && has_enumerable() && !has_value() && in IsRegularAccessorProperty()
69 return has_configurable() && has_enumerable() && has_value() && in IsRegularDataProperty()
85 bool has_configurable() const { return has_configurable_; } in has_configurable() function
112 (has_configurable() && !configurable() ? DONT_DELETE : NONE) | in ToAttributes()
Dproperty-descriptor.cc176 if (has_configurable()) { in ToObject()
340 if (!desc->has_configurable()) desc->set_configurable(false); in CompletePropertyDescriptor()
Dobjects.cc1930 if (desc.has_configurable()) { in DefinePropertyWithInterceptorInternal()
7211 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
7231 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
7254 (!desc->has_configurable() || in ValidateAndApplyPropertyDescriptor()
7269 if (desc->has_configurable() && desc->configurable()) { in ValidateAndApplyPropertyDescriptor()
7383 if (desc->has_configurable()) { in ValidateAndApplyPropertyDescriptor()
7773 bool setting_config_false = desc->has_configurable() && !desc->configurable(); in DefineOwnProperty()
Dapi.cc4258 DCHECK(private_->desc.has_configurable()); in configurable()
4262 bool v8::PropertyDescriptor::has_configurable() const { in has_configurable() function in v8::v8::PropertyDescriptor
4263 return private_->desc.has_configurable(); in has_configurable()
/external/v8/src/objects/
Djs-array-buffer.cc254 if ((desc->has_configurable() && desc->configurable()) || in DefineOwnProperty()
264 if (!desc->has_configurable()) desc->set_configurable(false); in DefineOwnProperty()
/external/v8/include/
Dv8.h4314 bool has_configurable() const;