Home
last modified time | relevance | path

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

/external/v8/src/
Dproperty-descriptor.h56 return !has_enumerable() && !has_configurable() && !has_writable() && in is_empty()
72 bool has_configurable() const { return has_configurable_; } in has_configurable() function
99 (has_configurable() && !configurable() ? DONT_DELETE : NONE) | in ToAttributes()
Dproperty-descriptor.cc135 if (has_configurable()) { in ToObject()
295 if (!desc->has_configurable()) desc->set_configurable(false); in CompletePropertyDescriptor()
Dobjects.cc6596 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
6616 if (!desc->has_configurable()) desc->set_configurable(false); in ValidateAndApplyPropertyDescriptor()
6639 (!desc->has_configurable() || in ValidateAndApplyPropertyDescriptor()
6654 if (desc->has_configurable() && desc->configurable()) { in ValidateAndApplyPropertyDescriptor()
6773 if (desc->has_configurable()) { in ValidateAndApplyPropertyDescriptor()
7148 bool setting_config_false = desc->has_configurable() && !desc->configurable(); in DefineOwnProperty()