Home
last modified time | relevance | path

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

/external/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.1st/
Dbinder1st.pass.cpp33 : public std::binder1st<test_func>
35 typedef std::binder1st<test_func> base;
37 test() : std::binder1st<test_func>(test_func(2), 30) {} in test()
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dfunctional.hpp674 …template <typename Op> struct binder1st : unary_function<typename Op::second_argument_type, typena… struct
676 …__host__ __device__ __forceinline__ binder1st(const Op& op_, const typename Op::first_argument_typ… in binder1st() function
683 __host__ __device__ __forceinline__ binder1st() {} in binder1st() argument
684 …__host__ __device__ __forceinline__ binder1st(const binder1st& other) : op(other.op), arg1(other.a… in binder1st() argument
690 …template <typename Op, typename T> __host__ __device__ __forceinline__ binder1st<Op> bind1st(const… in bind1st()
692 return binder1st<Op>(op, typename Op::first_argument_type(x)); in bind1st()
/external/libcxx/include/
Dfunctional229 class binder1st
237 binder1st(const Operation& x, const typename Operation::first_argument_type y);
243 binder1st<Operation> bind1st(const Operation& op, const T& x);
1013 class _LIBCPP_TYPE_VIS_ONLY binder1st
1021 _LIBCPP_INLINE_VISIBILITY binder1st(const __Operation& __x,
1034 binder1st<__Operation>
1036 {return binder1st<__Operation>(__op, __x);}
/external/eigen/Eigen/src/Core/
DFunctors.h977 struct functor_traits<std::binder1st<T> >