Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-array-iterator-prototype.c76 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_builtin_array_iterator_prototype_object_next()
122 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_builtin_array_iterator_prototype_object_next()
131 return ecma_create_iter_result_object (ecma_make_uint32_value (index), ECMA_VALUE_FALSE); in ecma_builtin_array_iterator_prototype_object_next()
148 result = ecma_create_iter_result_object (get_value, ECMA_VALUE_FALSE); in ecma_builtin_array_iterator_prototype_object_next()
160 result = ecma_create_iter_result_object (entry_array_value, ECMA_VALUE_FALSE); in ecma_builtin_array_iterator_prototype_object_next()
Decma-builtin-string-iterator-prototype.c75 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_builtin_string_iterator_prototype_object_next()
98 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_builtin_string_iterator_prototype_object_next()
135 …ecma_value_t result = ecma_create_iter_result_object (ecma_make_string_value (result_str_p), ECMA_… in ecma_builtin_string_iterator_prototype_object_next()
Decma-builtin-generator-prototype.c101 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_builtin_generator_prototype_object_do()
190 ecma_value_t result = ecma_create_iter_result_object (value, ecma_make_boolean_value (done)); in ecma_builtin_generator_prototype_object_do()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-container-object.c1142 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_op_container_iterator_next()
1157 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_op_container_iterator_next()
1173 ret_value = ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_op_container_iterator_next()
1187 ret_value = ecma_create_iter_result_object (key_arg, ECMA_VALUE_FALSE); in ecma_op_container_iterator_next()
1191 ret_value = ecma_create_iter_result_object (value_arg, ECMA_VALUE_FALSE); in ecma_op_container_iterator_next()
1200 ret_value = ecma_create_iter_result_object (entry_array_value, ECMA_VALUE_FALSE); in ecma_op_container_iterator_next()
Decma-iterator-object.h51 ecma_create_iter_result_object (ecma_value_t value, ecma_value_t done);
Decma-iterator-object.c93 ecma_create_iter_result_object (ecma_value_t value, /**< value */ in ecma_create_iter_result_object() function
311 return ecma_create_iter_result_object (value, true); in ecma_op_iterator_return()