Home | History | Annotate | Download | only in stl

Lines Matching refs:const_mem_fun1_ref_t

468 class const_mem_fun1_ref_t :
473 explicit const_mem_fun1_ref_t(typename _Base::__fun_type __f) : _Base(__f) {}
570 class const_mem_fun1_ref_t : public binary_function<_Tp,_Arg,_Ret> {
573 explicit const_mem_fun1_ref_t(__fun_type __pf) : _M_f(__pf) {}
678 class const_mem_fun1_ref_t<void, _Tp, _Arg>
682 explicit const_mem_fun1_ref_t _STLP_PSPEC3(void,_Tp,_Arg) (__fun_type __pf) : _M_f(__pf) {}
747 inline const_mem_fun1_ref_t<_Result,_Tp,_Arg>
748 mem_fun_ref(_Result (_Tp::*__f)(_Arg) const) { return const_mem_fun1_ref_t<_Result,_Tp,_Arg>(__f); }
766 inline const_mem_fun1_ref_t<_Result,_Tp,_Arg>
767 mem_fun1_ref(_Result (_Tp::*__f)(_Arg) const) { return const_mem_fun1_ref_t<_Result,_Tp,_Arg>(__f); }