Searched refs:ecma_create_iter_result_object (Results 1 – 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-array-iterator-prototype.c | 76 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()
|
D | ecma-builtin-string-iterator-prototype.c | 75 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()
|
D | ecma-builtin-generator-prototype.c | 101 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/ |
D | ecma-container-object.c | 1142 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()
|
D | ecma-iterator-object.h | 51 ecma_create_iter_result_object (ecma_value_t value, ecma_value_t done);
|
D | ecma-iterator-object.c | 93 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()
|