Home
last modified time | relevance | path

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

/external/v8/src/objects/
Dproperty-descriptor.h57 return !has_enumerable() && !has_configurable() && !has_writable() && in is_empty()
62 return has_configurable() && has_enumerable() && !has_value() && in IsRegularAccessorProperty()
67 return has_configurable() && has_enumerable() && has_value() && in IsRegularDataProperty()
83 bool has_configurable() const { return has_configurable_; } in has_configurable() function
110 (has_configurable() && !configurable() ? DONT_DELETE : NONE) | in ToAttributes()
Dproperty-descriptor-object.tq11 has_configurable: bool: 1 bit;
Djs-array-buffer.cc234 if ((desc->has_configurable() && desc->configurable()) || in DefineOwnProperty()
244 if (!desc->has_configurable()) desc->set_configurable(false); in DefineOwnProperty()
Dproperty-descriptor.cc176 if (has_configurable()) { in ToObject()
338 if (!desc->has_configurable()) desc->set_configurable(false); in CompletePropertyDescriptor()
Djs-objects.cc1183 if (desc->has_configurable()) { in DefinePropertyWithInterceptorInternal()
1290 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
1310 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
1333 (!desc->has_configurable() || in ValidateAndApplyPropertyDescriptor()
1348 if (desc->has_configurable() && desc->configurable()) { in ValidateAndApplyPropertyDescriptor()
1462 if (desc->has_configurable()) { in ValidateAndApplyPropertyDescriptor()
Dobjects.cc3441 bool setting_config_false = desc->has_configurable() && !desc->configurable(); in DefineOwnProperty()
/external/v8/src/debug/
Ddebug-property-iterator.cc122 descriptor.configurable(), descriptor.has_configurable(), in descriptor()
Ddebug-interface.h590 bool has_configurable : 1; member
/external/v8/src/inspector/
Dvalue-mirror.cc1496 descriptor.has_configurable ? descriptor.configurable : false; in getProperties()
/external/v8/src/api/
Dapi.cc4222 DCHECK(private_->desc.has_configurable()); in configurable()
4226 bool v8::PropertyDescriptor::has_configurable() const { in has_configurable() function in v8::v8::PropertyDescriptor
4227 return private_->desc.has_configurable(); in has_configurable()
/external/v8/include/
Dv8.h4793 bool has_configurable() const;