Searched refs:bound_function (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/boost/compute/functional/ |
D | bind.hpp | 164 struct bound_function struct 168 bound_function(Function f, BoundArgs args) in bound_function() argument 222 inline detail::bound_function<F, boost::tuple<Args...> > 227 return detail::bound_function<F, ArgsTuple>(f, boost::make_tuple(args...)); in bind() 231 inline detail::bound_function<F, boost::tuple<A1> > 236 return detail::bound_function<F, Args>(f, boost::make_tuple(a1)); in bind() 240 inline detail::bound_function<F, boost::tuple<A1, A2> > 245 return detail::bound_function<F, Args>(f, boost::make_tuple(a1, a2)); in bind() 249 inline detail::bound_function<F, boost::tuple<A1, A2, A3> > 254 return detail::bound_function<F, Args>(f, boost::make_tuple(a1, a2, a3)); in bind()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-function-prototype.c | 258 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/ |
D | ecma-function-object.c | 124 … 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/ |
D | test_decorators.py | 285 bound_function = self.__wrapped__.__get__(instance, owner) 286 return BoundWrapper(bound_function)
|
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-gc.c | 252 … 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()
|
D | ecma-globals.h | 919 } bound_function; member
|
/third_party/quickjs/ |
D | quickjs.c | 904 struct JSBoundFunction *bound_function; /* JS_CLASS_BOUND_FUNCTION */ member 5369 JSBoundFunction *bf = p->u.bound_function; in js_bound_function_finalizer() 5384 JSBoundFunction *bf = p->u.bound_function; in js_bound_function_mark() 6073 JSBoundFunction *bf = p->u.bound_function; in JS_ComputeMemoryUsage() 6982 JSBoundFunction *s = p->u.bound_function; in JS_OrdinaryIsInstanceOf() 16132 bf = p->u.bound_function; in js_call_bound_function() 18768 JSBoundFunction *bf = p->u.bound_function; in JS_GetFunctionRealm() 37681 p->u.bound_function = bf; in js_function_bind()
|