Home | History | Annotate | Download | only in bits

Lines Matching refs:__f

669     mem_fun(_Ret (_Tp::*__f)())
670 { return mem_fun_t<_Ret, _Tp>(__f); }
674 mem_fun(_Ret (_Tp::*__f)() const)
675 { return const_mem_fun_t<_Ret, _Tp>(__f); }
679 mem_fun_ref(_Ret (_Tp::*__f)())
680 { return mem_fun_ref_t<_Ret, _Tp>(__f); }
684 mem_fun_ref(_Ret (_Tp::*__f)() const)
685 { return const_mem_fun_ref_t<_Ret, _Tp>(__f); }
689 mem_fun(_Ret (_Tp::*__f)(_Arg))
690 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
694 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
695 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
699 mem_fun_ref(_Ret (_Tp::*__f)(_Arg))
700 { return mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); }
704 mem_fun_ref(_Ret (_Tp::*__f)(_Arg) const)
705 { return const_mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); }