Home
last modified time | relevance | path

Searched refs:length_prop (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-array-object.c91 ext_obj_p->u.array.u.length_prop = ECMA_PROPERTY_FLAG_WRITABLE | ECMA_PROPERTY_TYPE_VIRTUAL; in ecma_op_new_array_object()
120 return array_p->u.array.u.length_prop & ECMA_FAST_ARRAY_FLAG; in ecma_op_array_is_fast_array()
148 …ext_obj_p->u.array.u.length_prop = (uint8_t) (ext_obj_p->u.array.u.length_prop | ECMA_FAST_ARRAY_F… in ecma_op_new_fast_array_object()
174 …ext_obj_p->u.array.u.length_prop = (uint8_t) (ext_obj_p->u.array.u.length_prop & ~ECMA_FAST_ARRAY_… in ecma_fast_array_convert_to_normal()
220 …ext_obj_p->u.array.u.length_prop = (uint8_t) (ext_obj_p->u.array.u.length_prop & ~ECMA_FAST_ARRAY_… in ecma_fast_array_convert_to_normal()
1004 …uint8_t new_prop_value = (uint8_t) (ext_object_p->u.array.u.length_prop & ~ECMA_PROPERTY_FLAG_WRIT… in ecma_op_array_object_set_length()
1005 ext_object_p->u.array.u.length_prop = new_prop_value; in ecma_op_array_object_set_length()
1007 else if (!ecma_is_property_writable (ext_object_p->u.array.u.length_prop)) in ecma_op_array_object_set_length()
1014 else if (!ecma_is_property_writable (ext_object_p->u.array.u.length_prop)) in ecma_op_array_object_set_length()
1035 …uint8_t new_prop_value = (uint8_t) (ext_object_p->u.array.u.length_prop & ~ECMA_PROPERTY_FLAG_WRIT… in ecma_op_array_object_set_length()
[all …]
Decma-objects.c144 …return ext_object_p->u.array.u.length_prop & (ECMA_PROPERTY_TYPE_VIRTUAL | ECMA_PROPERTY_FLAG_WRIT… in ecma_op_object_get_own_property()
1296 if (ecma_is_property_writable (ext_object_p->u.array.u.length_prop)) in ecma_op_object_put_with_receiver()
1579 if (!ecma_is_property_writable (ext_object_p->u.array.u.length_prop)) in ecma_op_object_put_with_receiver()
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-tagged-template-literal.c132 …uint8_t new_prop_value = (uint8_t) (ext_obj_p->u.array.u.length_prop & ~ECMA_PROPERTY_FLAG_WRITABL… in parser_tagged_template_literal_freeze_array()
133 ext_obj_p->u.array.u.length_prop = new_prop_value; in parser_tagged_template_literal_freeze_array()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h881 ecma_property_t length_prop; /**< length property */ member
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtins.c443 … ext_object_p->u.array.u.length_prop = ECMA_PROPERTY_FLAG_WRITABLE | ECMA_PROPERTY_TYPE_VIRTUAL; in ecma_instantiate_builtin()