Home
last modified time | relevance | path

Searched refs:ECMA_PROP_IS_CONFIGURABLE (Results 1 – 9 of 9) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.c396 || !(property_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE)); in ecma_op_general_object_define_own_property()
465 && ((property_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE) in ecma_op_general_object_define_own_property()
631 (property_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE)); in ecma_op_general_object_define_own_property()
686 if (!(current_p->flags & ECMA_PROP_IS_CONFIGURABLE)) in ecma_op_is_compatible_property_descriptor()
688 if (desc_p->flags & ECMA_PROP_IS_CONFIGURABLE) in ecma_op_is_compatible_property_descriptor()
715 return (current_p->flags & ECMA_PROP_IS_CONFIGURABLE) != 0; in ecma_op_is_compatible_property_descriptor()
721 if (!(current_p->flags & ECMA_PROP_IS_CONFIGURABLE)) in ecma_op_is_compatible_property_descriptor()
744 if (!(current_p->flags & ECMA_PROP_IS_CONFIGURABLE)) in ecma_op_is_compatible_property_descriptor()
Decma-proxy-object.c741 if (!(target_desc.flags & ECMA_PROP_IS_CONFIGURABLE)) in ecma_proxy_object_get_own_property_descriptor()
813 target_is_configurable = ((target_desc.flags & ECMA_PROP_IS_CONFIGURABLE) != 0); in ecma_proxy_object_get_own_property_descriptor()
825 else if (!(prop_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE)) in ecma_proxy_object_get_own_property_descriptor()
938 && !(prop_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE)); in ecma_proxy_object_define_own_property()
965 else if (setting_config_false && (target_desc.flags & ECMA_PROP_IS_CONFIGURABLE)) in ecma_proxy_object_define_own_property()
1056 bool prop_is_configurable = target_desc.flags & ECMA_PROP_IS_CONFIGURABLE; in ecma_proxy_object_has()
1159 && !(target_desc.flags & ECMA_PROP_IS_CONFIGURABLE) in ecma_proxy_object_get()
1166 else if (!(target_desc.flags & ECMA_PROP_IS_CONFIGURABLE) in ecma_proxy_object_get()
1274 && !(target_desc.flags & ECMA_PROP_IS_CONFIGURABLE) in ecma_proxy_object_set()
1282 else if (!(target_desc.flags & ECMA_PROP_IS_CONFIGURABLE) in ecma_proxy_object_set()
[all …]
Decma-conversion.c570 | ECMA_PROP_IS_CONFIGURABLE); in ecma_op_from_property_descriptor()
642 prop_desc.value = ecma_make_boolean_value (src_prop_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE); in ecma_op_from_property_descriptor()
707 …int32_t is_configurable = (ecma_op_to_boolean (configurable_prop_value) ? ECMA_PROP_IS_CONFIGURABLE in ecma_op_to_property_descriptor()
Decma-array-object.c1055 | ECMA_PROP_IS_CONFIGURABLE \
1077 || !(property_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE)); in ecma_op_array_object_define_own_property()
1091 if (property_desc_p->flags & (ECMA_PROP_IS_CONFIGURABLE in ecma_op_array_object_define_own_property()
Decma-typedarray-object.c1307 || ((property_desc_p->flags & (ECMA_PROP_IS_CONFIGURABLE_DEFINED | ECMA_PROP_IS_CONFIGURABLE)) in ecma_op_typedarray_define_index_prop()
1308 == (ECMA_PROP_IS_CONFIGURABLE_DEFINED | ECMA_PROP_IS_CONFIGURABLE)) in ecma_op_typedarray_define_index_prop()
Decma-objects.c1911 flags |= ecma_is_property_configurable (property) ? ECMA_PROP_IS_CONFIGURABLE: ECMA_PROP_NO_OPTS; in ecma_op_object_get_own_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object.c394 prop_desc.flags &= (uint16_t) ~ECMA_PROP_IS_CONFIGURABLE; in ecma_builtin_object_set_integrity_level()
444 prop_desc.flags &= (uint16_t) ~ECMA_PROP_IS_CONFIGURABLE; in ecma_builtin_object_set_integrity_level()
655 bool is_configurable = (prop_desc.flags & ECMA_PROP_IS_CONFIGURABLE); in ecma_builtin_object_test_integrity_level()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1072 ECMA_PROP_IS_CONFIGURABLE = (1 << 2), /** [[Configurable]] */ enumerator
/third_party/jerryscript/jerry-core/api/
Djerry.c2622 …2_t) (ECMA_PROP_IS_CONFIGURABLE_DEFINED | (prop_desc_p->is_configurable ? ECMA_PROP_IS_CONFIGURABLE in jerry_define_own_property()
2732 prop_desc_p->is_configurable = (prop_desc.flags & ECMA_PROP_IS_CONFIGURABLE) != 0; in jerry_get_own_property_descriptor()