Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.c395 JERRY_ASSERT ((property_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE_DEFINED) in ecma_op_general_object_define_own_property()
628 if (property_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE_DEFINED) in ecma_op_general_object_define_own_property()
Decma-conversion.c569 | ECMA_PROP_IS_CONFIGURABLE_DEFINED in ecma_op_from_property_descriptor()
710 prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_CONFIGURABLE_DEFINED | is_configurable); in ecma_op_to_property_descriptor()
Decma-objects-arguments.c179 | ECMA_PROP_IS_CONFIGURABLE_DEFINED); in ecma_op_create_arguments_object()
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-array-object.c1054 | ECMA_PROP_IS_CONFIGURABLE_DEFINED \
1076 JERRY_ASSERT ((property_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE_DEFINED) in ecma_op_array_object_define_own_property()
Decma-proxy-object.c937 bool setting_config_false = ((prop_desc_p->flags & ECMA_PROP_IS_CONFIGURABLE_DEFINED) in ecma_proxy_object_define_own_property()
Decma-objects.c1913 …sc_p->flags = (uint16_t) (ECMA_PROP_IS_ENUMERABLE_DEFINED | ECMA_PROP_IS_CONFIGURABLE_DEFINED | fl… in ecma_op_object_get_own_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1078 ECMA_PROP_IS_CONFIGURABLE_DEFINED = (1 << 7), /** Is [[Configurable]] defined? */ enumerator
/third_party/jerryscript/jerry-core/api/
Djerry.c2622 …flags |= (uint32_t) (ECMA_PROP_IS_CONFIGURABLE_DEFINED | (prop_desc_p->is_configurable ? ECMA_PROP… in jerry_define_own_property()