Home
last modified time | relevance | path

Searched refs:iterator_index (Results 1 – 6 of 6) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-string-iterator-prototype.c83 ecma_length_t position = ext_obj_p->u.pseudo_array.u1.iterator_index; in ecma_builtin_string_iterator_prototype_object_next()
132 ext_obj_p->u.pseudo_array.u1.iterator_index = (uint16_t) (position + result_size); in ecma_builtin_string_iterator_prototype_object_next()
Decma-builtin-array-iterator-prototype.c90 uint32_t index = ext_obj_p->u.pseudo_array.u1.iterator_index; in ecma_builtin_array_iterator_prototype_object_next()
116 ext_obj_p->u.pseudo_array.u1.iterator_index++; in ecma_builtin_array_iterator_prototype_object_next()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-iterator-object.c155 ext_obj_p->u.pseudo_array.u1.iterator_index = 0; in ecma_op_create_iterator_object()
Decma-container-object.c1061 uint32_t index = ((ecma_extended_object_t *) iter_obj_p)->u.pseudo_array.u1.iterator_index; in ecma_op_iterator_get_index()
1103 ((ecma_extended_object_t *) iter_obj_p)->u.pseudo_array.u1.iterator_index = (uint16_t) index; in ecma_op_iterator_set_index()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h901 uint16_t iterator_index; /**< for %Iterator%: [[%Iterator%NextIndex]] property */ member
/third_party/jerryscript/jerry-core/vm/
Dvm.c2068 const uint8_t iterator_index = (uint8_t) (1 + (opcode - CBC_EXT_REST_INITIALIZER)); in vm_loop() local
2070 ecma_value_t iterator = stack_top_p[-iterator_index]; in vm_loop()