/third_party/jerryscript/tests/unit-core/ |
D | test-api.c | 397 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()
|
D | test-newtarget.c | 96 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()
|
D | test-objects-foreach.c | 211 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()
|
D | test-native-instanceof.c | 46 jerry_value_t result = jerry_call_function (instanceof, undefined, args, 2); in test_instanceof()
|
D | test-api-strings.c | 28 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/ |
D | setInterval-js.cpp | 33 …int id = mbed::js::EventLoop::getInstance().getQueue().call_every(interval, jerry_call_function, a… in DECLARE_GLOBAL_FUNCTION()
|
D | setTimeout-js.cpp | 33 …int id = mbed::js::EventLoop::getInstance().getQueue().call_in(interval, jerry_call_function, args… in DECLARE_GLOBAL_FUNCTION()
|
/third_party/jerryscript/targets/esp8266/user/ |
D | jerry_run.c | 75 jerry_value_t res = jerry_call_function (sysloop_func, in js_loop()
|
/third_party/jerryscript/targets/zephyr/src/ |
D | main-zephyr.c | 68 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/ |
D | EventLoop.h | 76 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/ |
D | main.c | 124 jerry_value_t ret_val_print = jerry_call_function (print_function, in eval_jerry_script()
|
/third_party/jerryscript/tests/unit-ext/ |
D | test-ext-method-register.c | 267 jerry_value_t func_result = jerry_call_function (prop_ok_func, in test_error_multiple_functions()
|
/third_party/jerryscript/jerry-core/include/ |
D | jerryscript-core.h | 548 jerry_value_t jerry_call_function (const jerry_value_t func_obj_val, const jerry_value_t this_val,
|
/third_party/jerryscript/jerry-main/ |
D | main-unix.c | 979 jerry_value_t ret_val = jerry_call_function (callback_fn, jerry_create_undefined (), NULL, 0); in main()
|
/third_party/jerryscript/docs/ |
D | 02.API-REFERENCE.md | 1148 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/ |
D | jerry.c | 2866 jerry_call_function (const jerry_value_t func_obj_val, /**< function object to call */ in jerry_call_function() function
|