Home
last modified time | relevance | path

Searched refs:ECMA_PROP_IS_GET_DEFINED (Results 1 – 11 of 11) 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()
529 if (((property_desc_p->flags & ECMA_PROP_IS_GET_DEFINED) in ecma_op_general_object_define_own_property()
607 if (property_desc_p->flags & ECMA_PROP_IS_GET_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()
752 if ((desc_p->flags & ECMA_PROP_IS_GET_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()
772 prop_desc.flags |= ECMA_PROP_IS_GET_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.c176 prop_desc.flags = (ECMA_PROP_IS_GET_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.c1093 | ECMA_PROP_IS_GET_DEFINED in ecma_op_array_object_define_own_property()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1069 ECMA_PROP_IS_GET_DEFINED = (1 << 0), /** Is [[Get]] defined? */ enumerator
Decma-helpers.c1201 if ((prop_desc_p->flags & ECMA_PROP_IS_GET_DEFINED) in ecma_free_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object.c1018 || (prop_desc.flags & ECMA_PROP_IS_GET_DEFINED))) in ecma_builtin_object_object_assign()
/third_party/jerryscript/jerry-core/api/
Djerry.c2649 flags |= ECMA_PROP_IS_GET_DEFINED; in jerry_define_own_property()
2740 prop_desc_p->is_get_defined = (prop_desc.flags & ECMA_PROP_IS_GET_DEFINED) != 0; in jerry_get_own_property_descriptor()