Home
last modified time | relevance | path

Searched refs:ECMA_VALUE_UNDEFINED (Results 1 – 25 of 55) sorted by relevance

123

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-promise-object.c77 JERRY_ASSERT (ext_object_p->u.class_prop.u.value == ECMA_VALUE_UNDEFINED); in ecma_promise_set_result()
283 ecma_value_t reject_value = (argc == 0) ? ECMA_VALUE_UNDEFINED : argv[0]; in ecma_promise_reject_handler()
288 return ECMA_VALUE_UNDEFINED; in ecma_promise_reject_handler()
325 ecma_fulfill_promise (promise, ECMA_VALUE_UNDEFINED); in ecma_promise_resolve_handler()
370 return ECMA_VALUE_UNDEFINED; in ecma_promise_resolve_handler()
395 if (resolve != ECMA_VALUE_UNDEFINED) in ecma_call_builtin_executor()
406 if (reject != ECMA_VALUE_UNDEFINED) in ecma_call_builtin_executor()
427 return ECMA_VALUE_UNDEFINED; in ecma_call_builtin_executor()
539 ext_object_p->u.class_prop.u.value = ECMA_VALUE_UNDEFINED; in ecma_op_create_promise_object()
561 ecma_value_t completion = ECMA_VALUE_UNDEFINED; in ecma_op_create_promise_object()
[all …]
Decma-jobqueue.c154 ECMA_VALUE_UNDEFINED, in ecma_process_promise_reaction_job()
174 ECMA_VALUE_UNDEFINED, in ecma_process_promise_reaction_job()
187 ECMA_VALUE_UNDEFINED, in ecma_process_promise_reaction_job()
240 ECMA_VALUE_UNDEFINED, in ecma_process_promise_resolve_thenable_job()
325 ecma_value_t ret = ECMA_VALUE_UNDEFINED; in ecma_process_all_enqueued_jobs()
Decma-eval.c52 ret_value = ECMA_VALUE_UNDEFINED; in ecma_op_eval()
57 ret_value = ECMA_VALUE_UNDEFINED; in ecma_op_eval()
Decma-container-object.c629 return ECMA_VALUE_UNDEFINED; in ecma_op_container_get()
638 return ECMA_VALUE_UNDEFINED; in ecma_op_container_get()
645 return ECMA_VALUE_UNDEFINED; in ecma_op_container_get()
842 ecma_value_t ret_value = ECMA_VALUE_UNDEFINED; in ecma_op_container_foreach()
895 return ECMA_VALUE_UNDEFINED; in ecma_op_container_clear()
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()
1163 ecma_value_t ret_value = ECMA_VALUE_UNDEFINED; 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()
Decma-iterator-object.c309 if (func_return == ECMA_VALUE_UNDEFINED) in ecma_op_iterator_return()
353 if (func_throw == ECMA_VALUE_UNDEFINED) in ecma_op_iterator_throw()
439 return ECMA_VALUE_UNDEFINED; in ecma_op_iterator_close()
487 return ECMA_VALUE_UNDEFINED; in ecma_op_iterator_close()
Decma-lex-env.c196 ECMA_VALUE_UNDEFINED, in ecma_op_create_mutable_binding()
319 result = ECMA_VALUE_UNDEFINED; in ecma_op_get_binding_value()
397 return ECMA_VALUE_UNDEFINED; in ecma_op_implicit_this_value()
Decma-reference.c130 return ECMA_VALUE_UNDEFINED; in ecma_op_resolve_super_base()
326 return ECMA_VALUE_UNDEFINED; in ecma_op_resolve_reference_value()
Decma-dataview-object.c52 ecma_value_t buffer = arguments_list_len > 0 ? arguments_list_p[0] : ECMA_VALUE_UNDEFINED; in ecma_op_dataview_create()
329 return ECMA_VALUE_UNDEFINED; in ecma_op_dataview_get_set_view_value()
/third_party/jerryscript/jerry-core/vm/
Dvm.c291 ECMA_VALUE_UNDEFINED, in vm_run_module()
689 ecma_value_t this_value = is_call_prop ? frame_ctx_p->stack_top_p[-2] : ECMA_VALUE_UNDEFINED; in vm_spread_operation()
771 ecma_value_t this_value = is_call_prop ? stack_top_p[-3] : ECMA_VALUE_UNDEFINED; in opfunc_call()
1041 left_value = ECMA_VALUE_UNDEFINED; in vm_loop()
1042 right_value = ECMA_VALUE_UNDEFINED; in vm_loop()
1182 left_value = ECMA_VALUE_UNDEFINED; in vm_loop()
1193 *stack_top_p++ = ECMA_VALUE_UNDEFINED; in vm_loop()
1330 ecma_value_t lit_value = ECMA_VALUE_UNDEFINED; in vm_loop()
1379 if (lit_value != ECMA_VALUE_UNDEFINED) in vm_loop()
1395 ecma_value_t lit_value = ECMA_VALUE_UNDEFINED; in vm_loop()
[all …]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-promise.c69 ECMA_VALUE_UNDEFINED, in ecma_builtin_promise_reject_abrupt()
264 return ECMA_VALUE_UNDEFINED; in ecma_builtin_promise_all_handler()
293 ecma_value_t ret = ECMA_VALUE_UNDEFINED; in ecma_builtin_promise_all_handler()
299 ECMA_VALUE_UNDEFINED, in ecma_builtin_promise_all_handler()
374 ECMA_VALUE_UNDEFINED, in ecma_builtin_promise_perform_all()
408 ECMA_VALUE_UNDEFINED, in ecma_builtin_promise_perform_all()
Decma-builtin-dataview-prototype.c147 ecma_value_t byte_offset = arguments_number > 0 ? arguments_list_p[0] : ECMA_VALUE_UNDEFINED; in ecma_builtin_dataview_prototype_dispatch_routine()
180 ecma_value_t value_to_set = arguments_number > 1 ? arguments_list_p[1] : ECMA_VALUE_UNDEFINED; in ecma_builtin_dataview_prototype_dispatch_routine()
197 ecma_value_t value_to_set = arguments_number > 1 ? arguments_list_p[1] : ECMA_VALUE_UNDEFINED; in ecma_builtin_dataview_prototype_dispatch_routine()
Decma-builtin-proxy.c103 … *proxy_p = ecma_proxy_create (arguments_list_len > 0 ? arguments_list_p[0] : ECMA_VALUE_UNDEFINED, in ecma_builtin_proxy_dispatch_construct()
104 … arguments_list_len > 1 ? arguments_list_p[1] : ECMA_VALUE_UNDEFINED); in ecma_builtin_proxy_dispatch_construct()
Decma-builtin-function-prototype.c186 ECMA_VALUE_UNDEFINED, in ecma_builtin_function_prototype_object_call()
262 bound_func_p->header.u.bound_function.args_len_or_this = ECMA_VALUE_UNDEFINED; in ecma_builtin_function_prototype_object_bind()
287 bound_func_p->header.u.bound_function.args_len_or_this = ECMA_VALUE_UNDEFINED; in ecma_builtin_function_prototype_object_bind()
377 return ECMA_VALUE_UNDEFINED; in ecma_builtin_function_prototype_dispatch_call()
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()
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()
Decma-builtin-regexp.c50 ecma_value_t pattern_value = ECMA_VALUE_UNDEFINED; in ecma_builtin_regexp_dispatch_helper()
51 ecma_value_t flags_value = ECMA_VALUE_UNDEFINED; in ecma_builtin_regexp_dispatch_helper()
Decma-builtin-generator-prototype.c101 return ecma_create_iter_result_object (ECMA_VALUE_UNDEFINED, ECMA_VALUE_TRUE); in ecma_builtin_generator_prototype_object_do()
185 arg = ECMA_VALUE_UNDEFINED; in ecma_builtin_generator_prototype_object_do()
Decma-builtin-promise-prototype.c69 ECMA_VALUE_UNDEFINED, in ecma_builtin_promise_prototype_catch()
Decma-builtin-weakset-prototype.c50 …return ecma_op_container_set (this_arg, value_arg, ECMA_VALUE_UNDEFINED, LIT_MAGIC_STRING_WEAKSET_… in ecma_builtin_weakset_prototype_object_add()
Decma-builtin-boolean.c62 arg_value = ECMA_VALUE_UNDEFINED; in ecma_builtin_boolean_dispatch_call()
Decma-builtin-object.c246 return ECMA_VALUE_UNDEFINED; in ecma_builtin_object_object_set_proto()
252 return ECMA_VALUE_UNDEFINED; in ecma_builtin_object_object_set_proto()
284 return ECMA_VALUE_UNDEFINED; in ecma_builtin_object_object_set_proto()
746 return ECMA_VALUE_UNDEFINED; in ecma_builtin_object_object_get_own_property_descriptor()
Decma-builtin-array-prototype.c415 return ECMA_IS_VALUE_ERROR (set_length_value) ? set_length_value : ECMA_VALUE_UNDEFINED; in ecma_builtin_array_prototype_object_pop()
732 return ECMA_IS_VALUE_ERROR (set_length_value) ? set_length_value : ECMA_VALUE_UNDEFINED; in ecma_builtin_array_prototype_object_shift()
753 buffer_p[len - 1] = ECMA_VALUE_UNDEFINED; in ecma_builtin_array_prototype_object_shift()
1073 ECMA_VALUE_UNDEFINED, in ecma_builtin_array_prototype_object_sort_compare_helper()
1786 ecma_value_t search_element = (args_number > 0) ? args[0] : ECMA_VALUE_UNDEFINED; in ecma_builtin_array_prototype_object_last_index_of()
1941 return ECMA_VALUE_UNDEFINED; in ecma_builtin_array_apply()
2171 ecma_value_t accumulator = ECMA_VALUE_UNDEFINED; in ecma_builtin_array_reduce_from()
2244 ECMA_VALUE_UNDEFINED, in ecma_builtin_array_reduce_from()
2431 return is_find ? ECMA_VALUE_UNDEFINED : ecma_make_integer_value (-1); in ecma_builtin_array_prototype_object_find()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray.c70 ecma_value_t map_fn = ECMA_VALUE_UNDEFINED; in ecma_builtin_typedarray_from()
71 ecma_value_t this_in_fn = ECMA_VALUE_UNDEFINED; in ecma_builtin_typedarray_from()
Decma-builtin-typedarray-prototype.c165 return ECMA_VALUE_UNDEFINED; in ecma_builtin_typedarray_prototype_to_string_tag_getter()
269 ret_value = ECMA_VALUE_UNDEFINED; in ecma_builtin_typedarray_prototype_exec_routine()
559 ecma_value_t accumulator = ECMA_VALUE_UNDEFINED; in ecma_builtin_typedarray_prototype_reduce_with_direction()
608 ECMA_VALUE_UNDEFINED, in ecma_builtin_typedarray_prototype_reduce_with_direction()
879 return ECMA_VALUE_UNDEFINED; in ecma_op_typedarray_set_with_typedarray()
908 return ECMA_VALUE_UNDEFINED; in ecma_op_typedarray_set_with_typedarray()
1013 ret_val = ECMA_VALUE_UNDEFINED; in ecma_builtin_typedarray_prototype_set()
1446 ECMA_VALUE_UNDEFINED, in ecma_builtin_typedarray_prototype_sort_compare_helper()
1652 return is_find ? ECMA_VALUE_UNDEFINED : ecma_make_integer_value (-1); in ecma_builtin_typedarray_prototype_find_helper()
1895 if (args_number > 2 && args[2] != ECMA_VALUE_UNDEFINED) in ecma_builtin_typedarray_prototype_copy_within()
[all …]
/third_party/jerryscript/jerry-core/api/
Djerry.c671 return ECMA_VALUE_UNDEFINED; in jerry_run_all_enqueued_jobs()
1608 return ECMA_VALUE_UNDEFINED; in jerry_create_undefined()
2401 return jerry_return (ECMA_VALUE_UNDEFINED); in jerry_get_internal_property()
2408 return jerry_return (ECMA_VALUE_UNDEFINED); in jerry_get_internal_property()
2416 return jerry_return (ECMA_VALUE_UNDEFINED); in jerry_get_internal_property()
2569 prop_desc_p->value = ECMA_VALUE_UNDEFINED; in jerry_init_property_descriptor_fields()
2577 prop_desc_p->getter = ECMA_VALUE_UNDEFINED; in jerry_init_property_descriptor_fields()
2579 prop_desc_p->setter = ECMA_VALUE_UNDEFINED; in jerry_init_property_descriptor_fields()
2743 prop_desc_p->value = ECMA_VALUE_UNDEFINED; in jerry_get_own_property_descriptor()
2744 prop_desc_p->getter = ECMA_VALUE_UNDEFINED; in jerry_get_own_property_descriptor()
[all …]

123