Home
last modified time | relevance | path

Searched refs:jerry_call_function (Results 1 – 16 of 16) sorted by relevance

/third_party/jerryscript/tests/unit-core/
Dtest-api.c397 res = jerry_call_function (val_foo, jerry_create_undefined (), args, 2); in main()
409 res = jerry_call_function (val_bar, jerry_create_undefined (), args, 2); in main()
425 res = jerry_call_function (val_foo, jerry_create_undefined (), args, 2); in main()
494 res = jerry_call_function (val_a_foo, val_a, NULL, 0); in main()
517 res = jerry_call_function (val_call_external, global_obj_val, NULL, 0); in main()
585 res = jerry_call_function (val_t, global_obj_val, NULL, 0); in main()
595 res = jerry_call_function (val_t, global_obj_val, NULL, 0); in main()
607 res = jerry_call_function (obj_val, global_obj_val, NULL, 0); in main()
760 res = jerry_call_function (val_t, jerry_create_undefined (), NULL, 0); in main()
820 val_t = jerry_call_function (func_val, func_args[0], func_args, 3); in main()
Dtest-newtarget.c96 jerry_value_t func_call_result = jerry_call_function (func_obj_val, this_val, &sub_arg, 1); in construct_handler()
138 jerry_value_t constructed = jerry_call_function (demo_func, this_arg, &test_arg, 1); in main()
Dtest-objects-foreach.c211 jerry_value_t strict_equal_result = jerry_call_function (strict_equal, undefined, args, 2); in main()
236 strict_equal_result = jerry_call_function (strict_equal, undefined, args, 2); in main()
Dtest-native-instanceof.c46 jerry_value_t result = jerry_call_function (instanceof, undefined, args, 2); in test_instanceof()
Dtest-api-strings.c28 jerry_value_t res = jerry_call_function (is_equal_fn_val, jerry_create_undefined (), args, 2); in strict_equals()
/third_party/jerryscript/targets/mbedos5/jerryscript-mbed/jerryscript-mbed-drivers/source/
DsetInterval-js.cpp33 …int id = mbed::js::EventLoop::getInstance().getQueue().call_every(interval, jerry_call_function, a… in DECLARE_GLOBAL_FUNCTION()
DsetTimeout-js.cpp33 …int id = mbed::js::EventLoop::getInstance().getQueue().call_in(interval, jerry_call_function, args… in DECLARE_GLOBAL_FUNCTION()
/third_party/jerryscript/targets/esp8266/user/
Djerry_run.c75 jerry_value_t res = jerry_call_function (sysloop_func, in js_loop()
/third_party/jerryscript/targets/zephyr/src/
Dmain-zephyr.c68 jerry_value_t ret_val_print = jerry_call_function (print_function, in shell_cmd_handler()
/third_party/jerryscript/targets/mbedos5/jerryscript-mbed/jerryscript-mbed-event-loop/
DEventLoop.h76 queue.call(jerry_call_function, f, jerry_create_null(), (const jerry_value_t*)NULL, 0); in callback()
/third_party/jerryscript/targets/curie_bsp/jerry_app/quark/
Dmain.c124 jerry_value_t ret_val_print = jerry_call_function (print_function, in eval_jerry_script()
/third_party/jerryscript/tests/unit-ext/
Dtest-ext-method-register.c267 jerry_value_t func_result = jerry_call_function (prop_ok_func, in test_error_multiple_functions()
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h548 jerry_value_t jerry_call_function (const jerry_value_t func_obj_val, const jerry_value_t this_val,
/third_party/jerryscript/jerry-main/
Dmain-unix.c979 jerry_value_t ret_val = jerry_call_function (callback_fn, jerry_create_undefined (), NULL, 0); in main()
/third_party/jerryscript/docs/
D02.API-REFERENCE.md1148 jerry_value_t ret_value = jerry_call_function (parsed_function,
1182 - [jerry_call_function](#jerry_call_function)
4116 - [jerry_call_function](#jerry_call_function)
5947 ## jerry_call_function section in General API functions of JS objects
5962 jerry_call_function (const jerry_value_t func_obj_val,
5985 jerry_value_t ret_val = jerry_call_function (target_function, this_val, NULL, 0);
7502 jerry_value_t res = jerry_call_function (func, this_value, args, 2);
/third_party/jerryscript/jerry-core/api/
Djerry.c2866 jerry_call_function (const jerry_value_t func_obj_val, /**< function object to call */ in jerry_call_function() function