Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-conversion.c565 | ECMA_PROP_IS_WRITABLE_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()
748 prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_WRITABLE_DEFINED | is_writable); 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-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()
389 JERRY_ASSERT (!(property_desc_p->flags & ECMA_PROP_IS_WRITABLE_DEFINED)); in ecma_op_general_object_define_own_property()
399 JERRY_ASSERT ((property_desc_p->flags & ECMA_PROP_IS_WRITABLE_DEFINED) in ecma_op_general_object_define_own_property()
598 if (property_desc_p->flags & ECMA_PROP_IS_WRITABLE_DEFINED) in ecma_op_general_object_define_own_property()
700 const uint32_t data_desc_flags = (ECMA_PROP_IS_VALUE_DEFINED | ECMA_PROP_IS_WRITABLE_DEFINED); in ecma_op_is_compatible_property_descriptor()
Decma-array-object.c1056 | ECMA_PROP_IS_WRITABLE_DEFINED \
1080 JERRY_ASSERT ((property_desc_p->flags & ECMA_PROP_IS_WRITABLE_DEFINED) in ecma_op_array_object_define_own_property()
1099 if (property_desc_p->flags & ECMA_PROP_IS_WRITABLE_DEFINED) in ecma_op_array_object_define_own_property()
Decma-objects-arguments.c292 if ((property_desc_p->flags & ECMA_PROP_IS_WRITABLE_DEFINED) in ecma_op_arguments_object_define_own_property()
Decma-typedarray-object.c1311 || ((property_desc_p->flags & ECMA_PROP_IS_WRITABLE_DEFINED) in ecma_op_typedarray_define_index_prop()
Decma-objects.c1929 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.c438 if ((prop_desc.flags & (ECMA_PROP_IS_WRITABLE_DEFINED | ECMA_PROP_IS_WRITABLE)) in ecma_builtin_object_set_integrity_level()
439 == (ECMA_PROP_IS_WRITABLE_DEFINED | ECMA_PROP_IS_WRITABLE)) in ecma_builtin_object_set_integrity_level()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1080 ECMA_PROP_IS_WRITABLE_DEFINED = (1 << 9), /** Is [[Writable]] defined? */ enumerator
/third_party/jerryscript/jerry-core/api/
Djerry.c2641 …flags |= (uint32_t) (ECMA_PROP_IS_WRITABLE_DEFINED | (prop_desc_p->is_writable ? ECMA_PROP_IS_WRIT… in jerry_define_own_property()
2736 prop_desc_p->is_writable_defined = (prop_desc.flags & ECMA_PROP_IS_WRITABLE_DEFINED) != 0; in jerry_get_own_property_descriptor()