Home
last modified time | relevance | path

Searched refs:bound_function (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-function-prototype.c258 ECMA_SET_NON_NULL_POINTER_TAG (bound_func_p->header.u.bound_function.target_function, in ecma_builtin_function_prototype_object_bind()
262 bound_func_p->header.u.bound_function.args_len_or_this = ECMA_VALUE_UNDEFINED; in ecma_builtin_function_prototype_object_bind()
266 …bound_func_p->header.u.bound_function.args_len_or_this = ecma_copy_value_if_not_object (arguments_… in ecma_builtin_function_prototype_object_bind()
281 ECMA_SET_NON_NULL_POINTER_TAG (bound_func_p->header.u.bound_function.target_function, 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()
296 bound_func_p->header.u.bound_function.args_len_or_this = args_len_or_this; in ecma_builtin_function_prototype_object_bind()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c124 … bound_func_p->header.u.bound_function.target_function); in ecma_object_is_constructor()
597 … bound_func_p->header.u.bound_function.target_function); in ecma_op_function_has_instance()
980 … bound_func_p->header.u.bound_function.target_function); in ecma_op_bound_function_get_argument_list()
982 ecma_value_t args_len_or_this = bound_func_p->header.u.bound_function.args_len_or_this; in ecma_op_bound_function_get_argument_list()
1512 ecma_value_t args_len_or_this = bound_func_p->header.u.bound_function.args_len_or_this; in ecma_op_bound_function_try_to_lazy_instantiate_property()
1523 if (ECMA_GET_FIRST_BIT_FROM_POINTER_TAG (bound_func_p->header.u.bound_function.target_function)) in ecma_op_bound_function_try_to_lazy_instantiate_property()
1532 ECMA_SET_FIRST_BIT_TO_POINTER_TAG (bound_func_p->header.u.bound_function.target_function); in ecma_op_bound_function_try_to_lazy_instantiate_property()
1538 … bound_func_p->header.u.bound_function.target_function); in ecma_op_bound_function_try_to_lazy_instantiate_property()
1700 if (!ECMA_GET_FIRST_BIT_FROM_POINTER_TAG (bound_func_p->header.u.bound_function.target_function)) in ecma_op_bound_function_list_lazy_property_names()
/third_party/python/Lib/test/
Dtest_decorators.py308 bound_function = self.__wrapped__.__get__(instance, owner)
309 return BoundWrapper(bound_function)
/third_party/jerryscript/jerry-core/ecma/base/
Decma-gc.c252 … bound_func_p->header.u.bound_function.target_function); in ecma_gc_mark_bound_function_object()
256 ecma_value_t args_len_or_this = bound_func_p->header.u.bound_function.args_len_or_this; in ecma_gc_mark_bound_function_object()
1315 ecma_value_t args_len_or_this = bound_func_p->header.u.bound_function.args_len_or_this; in ecma_gc_free_object()
Decma-globals.h919 } bound_function; member