Home
last modified time | relevance | path

Searched refs:ECMA_PROP_IS_SET_DEFINED (Results 1 – 10 of 10) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.c383 JERRY_ASSERT ((property_desc_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) in ecma_op_general_object_define_own_property()
384 != (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)); in ecma_op_general_object_define_own_property()
387 else if (property_desc_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) in ecma_op_general_object_define_own_property()
531 || ((property_desc_p->flags & ECMA_PROP_IS_SET_DEFINED) in ecma_op_general_object_define_own_property()
614 if (property_desc_p->flags & ECMA_PROP_IS_SET_DEFINED) in ecma_op_general_object_define_own_property()
677 if ((current_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED) in ecma_op_is_compatible_property_descriptor()
699 const uint32_t accessor_desc_flags = (ECMA_PROP_IS_SET_DEFINED | ECMA_PROP_IS_GET_DEFINED); in ecma_op_is_compatible_property_descriptor()
740 JERRY_ASSERT ((current_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) != 0); in ecma_op_is_compatible_property_descriptor()
741 JERRY_ASSERT ((desc_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) != 0); in ecma_op_is_compatible_property_descriptor()
746 if ((desc_p->flags & ECMA_PROP_IS_SET_DEFINED) in ecma_op_is_compatible_property_descriptor()
[all …]
Decma-conversion.c598 JERRY_ASSERT (src_prop_desc_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)); in ecma_op_from_property_descriptor()
600 if (src_prop_desc_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) in ecma_op_from_property_descriptor()
811 prop_desc.flags |= ECMA_PROP_IS_SET_DEFINED; in ecma_op_to_property_descriptor()
838 && (prop_desc.flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED))) in ecma_op_to_property_descriptor()
Decma-objects-arguments.c177 | ECMA_PROP_IS_SET_DEFINED in ecma_op_create_arguments_object()
271 if (property_desc_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) in ecma_op_arguments_object_define_own_property()
Decma-proxy-object.c1167 && (target_desc.flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) in ecma_proxy_object_get()
1283 && (target_desc.flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) in ecma_proxy_object_set()
Decma-typedarray-object.c1306 || (property_desc_p->flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED)) in ecma_op_typedarray_define_index_prop()
Decma-objects.c1182 if (prop_desc.flags & (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED) in ecma_op_object_put_apply_receiver()
1937 prop_desc_p->flags |= (ECMA_PROP_IS_GET_DEFINED | ECMA_PROP_IS_SET_DEFINED); in ecma_op_object_get_own_property_descriptor()
Decma-array-object.c1094 | ECMA_PROP_IS_SET_DEFINED)) in ecma_op_array_object_define_own_property()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1070 ECMA_PROP_IS_SET_DEFINED = (1 << 1), /** Is [[Set]] defined? */ enumerator
Decma-helpers.c1207 if ((prop_desc_p->flags & ECMA_PROP_IS_SET_DEFINED) in ecma_free_property_descriptor()
/third_party/jerryscript/jerry-core/api/
Djerry.c2669 flags |= ECMA_PROP_IS_SET_DEFINED; in jerry_define_own_property()
2741 prop_desc_p->is_set_defined = (prop_desc.flags & ECMA_PROP_IS_SET_DEFINED) != 0; in jerry_get_own_property_descriptor()