Home
last modified time | relevance | path

Searched defs:this_val (Results 1 - 25 of 26) sorted by relevance

12

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-map-iterator-prototype.c52 ecma_builtin_map_iterator_prototype_object_next (ecma_value_t this_val) /**< this argument */ in ecma_builtin_map_iterator_prototype_object_next() argument
H A Decma-builtin-iterator-prototype.c51 ecma_builtin_iterator_prototype_object_iterator (ecma_value_t this_val) /**< this argument */ in ecma_builtin_iterator_prototype_object_iterator() argument
H A Decma-builtin-set-iterator-prototype.c52 ecma_builtin_set_iterator_prototype_object_next (ecma_value_t this_val) /**< this argument */ in ecma_builtin_set_iterator_prototype_object_next() argument
H A Decma-builtin-string-iterator-prototype.c52 ecma_builtin_string_iterator_prototype_object_next (ecma_value_t this_val) /**< this argument */ in ecma_builtin_string_iterator_prototype_object_next() argument
H A Decma-builtin-array-iterator-prototype.c53 ecma_builtin_array_iterator_prototype_object_next (ecma_value_t this_val) /**< this argument */ in ecma_builtin_array_iterator_prototype_object_next() argument
/third_party/jerryscript/tests/unit-core/
H A Dtest-api-value-type.cpp31 test_ext_function(const jerry_value_t function_obj, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_ext_function() argument
H A Dtest-regression-3588.cpp25 construct_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) construct_handler() argument
H A Dtest-abort.cpp24 callback_func(const jerry_value_t function_obj, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_count) callback_func() argument
H A Dtest-newtarget.cpp51 construct_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) construct_handler() argument
H A Dtest-api-binary-operations-instanceof.cpp33 my_constructor(const jerry_value_t func_val, const jerry_value_t this_val, const jerry_value_t argv[], const jerry_length_t argc) my_constructor() argument
H A Dtest-typedarray.cpp54 assert_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) assert_handler() argument
H A Dtest-proxy.cpp63 handler_get(const jerry_value_t function_obj, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_count) handler_get() argument
89 handler_set(const jerry_value_t function_obj, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_count) handler_set() argument
H A Dtest-promise.cpp40 create_promise1_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) create_promise1_handler() argument
57 create_promise2_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) create_promise2_handler() argument
74 assert_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) assert_handler() argument
H A Dtest-resource-name.cpp24 resource_name_handler(const jerry_value_t function_obj, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_count) resource_name_handler() argument
H A Dtest-arraybuffer.cpp42 assert_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) assert_handler() argument
H A Dtest-api.cpp67 handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) handler() argument
95 handler_throw_test(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) handler_throw_test() argument
143 handler_construct(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) handler_construct() argument
[all...]
/third_party/jerryscript/jerry-ext/arg/
H A Darg.c71 jerryx_arg_transform_this_and_args (const jerry_value_t this_val, /**< the this_val for the external function */ in jerryx_arg_transform_this_and_args() argument
/third_party/jerryscript/tests/unit-ext/module/
H A Djerry-module-test.c141 handle_clear_require_cache(const jerry_value_t js_function, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_count) handle_clear_require_cache() argument
157 handle_require(const jerry_value_t js_function, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_count) handle_require() argument
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-container-object.c1121 ecma_op_container_iterator_next (ecma_value_t this_val, /**< this argument */ in ecma_op_container_iterator_next() argument
H A Decma-proxy-object.c107 ecma_proxy_revoke_cb(const ecma_value_t function_obj, const ecma_value_t this_val, const ecma_value_t args_p[], const ecma_length_t args_count) ecma_proxy_revoke_cb() argument
H A Decma-promise-object.c624 ecma_op_get_capabilities_executor_cb(const ecma_value_t function_obj, const ecma_value_t this_val, const ecma_value_t args_p[], const ecma_length_t args_count) ecma_op_get_capabilities_executor_cb() argument
H A Decma-typedarray-object.c695 ecma_op_typedarray_from_helper (ecma_value_t this_val, /**< this_arg for the above from function */ in ecma_op_typedarray_from_helper() argument
754 ecma_op_typedarray_from(ecma_value_t items_val, ecma_value_t map_fn_val, ecma_value_t this_val, ecma_object_t *proto_p, uint8_t element_size_shift, ecma_typedarray_type_t typedarray_id) ecma_op_typedarray_from() argument
/third_party/jerryscript/tests/unit-ext/
H A Dtest-ext-arg.c109 test_validator1_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator1_handler() argument
213 test_validator2_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator2_handler() argument
259 test_validator3_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator3_handler() argument
326 test_validator_prop1_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_prop1_handler() argument
369 test_validator_prop2_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_prop2_handler() argument
419 test_validator_prop3_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_prop3_handler() argument
459 test_validator_int1_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_int1_handler() argument
514 test_validator_int2_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_int2_handler() argument
564 test_validator_int3_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_int3_handler() argument
593 test_validator_array1_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_array1_handler() argument
639 test_validator_array2_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_array2_handler() argument
797 test_validator_restore_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) test_validator_restore_handler() argument
856 create_object_a_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) create_object_a_handler() argument
876 create_object_b_handler(const jerry_value_t func_obj_val, const jerry_value_t this_val, const jerry_value_t args_p[], const jerry_length_t args_cnt) create_object_b_handler() argument
[all...]
/third_party/backends/backend/
H A Dhp-accessor.c855 SANE_Fixed this_val, other_val; in hp_accessor_geometry_getint() local
/third_party/jerryscript/jerry-core/vm/
H A Dopcodes.c769 ecma_op_implicit_constructor_handler_cb(const ecma_value_t function_obj, const ecma_value_t this_val, const ecma_value_t args_p[], const ecma_length_t args_count) ecma_op_implicit_constructor_handler_cb() argument
793 ecma_op_implicit_constructor_handler_heritage_cb(const ecma_value_t function_obj, const ecma_value_t this_val, const ecma_value_t args_p[], const ecma_length_t args_count) ecma_op_implicit_constructor_handler_heritage_cb() argument

Completed in 17 milliseconds

12