Home
last modified time | relevance | path

Searched refs:bound_function (Results 1 – 10 of 10) 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/node/deps/v8/src/objects/
Dturbofan-types.tq43 bound_function: bool: 1 bit;
154 return bitsetLow.bound_function;
Djs-objects.cc2741 JSBoundFunction bound_function = JSBoundFunction::cast(*this); in JSObjectShortPrint() local
2745 bound_function.bound_target_function().ptr())); in JSObjectShortPrint()
/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
/third_party/node/deps/v8/src/d8/
Dd8.cc2113 auto bound_function = i::Handle<i::JSBoundFunction>::cast(callable); in TestVerifySourcePositions() local
2114 auto bound_target = bound_function->bound_target_function(); in TestVerifySourcePositions()
/third_party/node/deps/v8/src/api/
Dapi.cc5380 auto bound_function = i::Handle<i::JSBoundFunction>::cast(self); in GetBoundFunction() local
5382 bound_function->bound_target_function(), bound_function->GetIsolate()); in GetBoundFunction()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc9328 TNode<JSBoundFunction> bound_function = CAST(current.value()); in GetFunctionRealm() local
9330 bound_function, JSBoundFunction::kBoundTargetFunctionOffset)); in GetFunctionRealm()