Home
last modified time | relevance | path

Searched refs:ECMA_PROP_IS_VALUE_DEFINED (Results 1 – 11 of 11) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.c380 if (property_desc_p->flags & (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED)) in ecma_op_general_object_define_own_property()
434 JERRY_ASSERT ((property_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_general_object_define_own_property()
484 || ((property_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_general_object_define_own_property()
510 || ((property_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_general_object_define_own_property()
591 if (property_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_general_object_define_own_property()
671 if ((current_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_is_compatible_property_descriptor()
700 const uint32_t data_desc_flags = (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED); in ecma_op_is_compatible_property_descriptor()
730 && (desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_is_compatible_property_descriptor()
775 desc_p->flags |= ECMA_PROP_IS_VALUE_DEFINED; in ecma_op_to_complete_property_descriptor()
Decma-conversion.c564 prop_desc.flags = (ECMA_PROP_IS_VALUE_DEFINED in ecma_op_from_property_descriptor()
574 if (src_prop_desc_p->flags & (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED)) in ecma_op_from_property_descriptor()
576 JERRY_ASSERT ((prop_desc.flags & (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED)) in ecma_op_from_property_descriptor()
577 == (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED)); in ecma_op_from_property_descriptor()
727 prop_desc.flags |= ECMA_PROP_IS_VALUE_DEFINED; in ecma_op_to_property_descriptor()
837 if ((prop_desc.flags & (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED)) in ecma_op_to_property_descriptor()
Decma-objects-arguments.c278 if (property_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_arguments_object_define_own_property()
Decma-array-object.c1051 #define ECMA_FAST_ARRAY_DATA_PROP_FLAGS (ECMA_PROP_IS_VALUE_DEFINED \
1109 if (property_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_array_object_define_own_property()
Decma-proxy-object.c1158 if ((target_desc.flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_proxy_object_get()
1273 if ((target_desc.flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_proxy_object_set()
Decma-typedarray-object.c1317 if (property_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_op_typedarray_define_index_prop()
Decma-objects.c1190 JERRY_ASSERT (prop_desc.flags & ECMA_PROP_IS_VALUE_DEFINED); in ecma_op_object_put_apply_receiver()
1929 prop_desc_p->flags |= (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED); in ecma_op_object_get_own_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object.c653 … bool is_writable_data = ((prop_desc.flags & (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE)) in ecma_builtin_object_test_integrity_level()
654 == (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE)); in ecma_builtin_object_test_integrity_level()
1017 … && (((prop_desc.flags & ECMA_PROP_IS_VALUE_DEFINED) && !ecma_is_value_undefined (prop_desc.value)) in ecma_builtin_object_object_assign()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1077 ECMA_PROP_IS_VALUE_DEFINED = (1 << 6), /** Is [[Value]] defined? */ enumerator
Decma-helpers.c1196 if (prop_desc_p->flags & ECMA_PROP_IS_VALUE_DEFINED) in ecma_free_property_descriptor()
/third_party/jerryscript/jerry-core/api/
Djerry.c2627 flags |= (prop_desc_p->is_value_defined ? ECMA_PROP_IS_VALUE_DEFINED : ECMA_PROP_NO_OPTS); in jerry_define_own_property()
2739 prop_desc_p->is_value_defined = (prop_desc.flags & ECMA_PROP_IS_VALUE_DEFINED) != 0; in jerry_get_own_property_descriptor()