Home
last modified time | relevance | path

Searched refs:binder2nd (Results 1 – 4 of 4) sorted by relevance

/external/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.2nd/
Dbinder2nd.pass.cpp33 : public std::binder2nd<test_func>
35 typedef std::binder2nd<test_func> base;
37 test() : std::binder2nd<test_func>(test_func(3), 4.5) {} in test()
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dfunctional.hpp695 …template <typename Op> struct binder2nd : unary_function<typename Op::first_argument_type, typenam… struct
697 …__host__ __device__ __forceinline__ binder2nd(const Op& op_, const typename Op::second_argument_ty… in binder2nd() function
704 __host__ __device__ __forceinline__ binder2nd() {} in binder2nd() argument
705 …__host__ __device__ __forceinline__ binder2nd(const binder2nd& other) : op(other.op), arg2(other.a… in binder2nd() function
711 …template <typename Op, typename T> __host__ __device__ __forceinline__ binder2nd<Op> bind2nd(const… in bind2nd()
713 return binder2nd<Op>(op, typename Op::second_argument_type(x)); in bind2nd()
/external/libcxx/include/
Dfunctional246 class binder2nd
254 binder2nd(const Operation& x, const typename Operation::second_argument_type y);
260 binder2nd<Operation> bind2nd(const Operation& op, const T& x);
1039 class _LIBCPP_TYPE_VIS_ONLY binder2nd
1048 binder2nd(const __Operation& __x, const typename __Operation::second_argument_type __y)
1060 binder2nd<__Operation>
1062 {return binder2nd<__Operation>(__op, __x);}
/external/eigen/Eigen/src/Core/
DFunctors.h973 struct functor_traits<std::binder2nd<T> >