Lines Matching refs:_M_f

68   explicit _Mem_fun0_ptr(__fun_type __f) : _M_f(__f) {}  in _Mem_fun0_ptr()
71 _Result operator ()(_Tp* __p) const { return (__p->*_M_f)(); } in operator()
74 __fun_type _M_f;
81 explicit _Mem_fun1_ptr(__fun_type __f) : _M_f(__f) {} in _Mem_fun1_ptr()
84 _Result operator ()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); } in operator()
87 __fun_type _M_f;
94 explicit _Const_mem_fun0_ptr(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun0_ptr()
97 _Result operator ()(const _Tp* __p) const { return (__p->*_M_f)(); } in operator()
100 __fun_type _M_f;
107 explicit _Const_mem_fun1_ptr(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun1_ptr()
111 return (__p->*_M_f)(__x); } in operator()
114 __fun_type _M_f;
121 explicit _Mem_fun0_ref(__fun_type __f) : _M_f(__f) {} in _Mem_fun0_ref()
124 _Result operator ()(_Tp& __p) const { return (__p.*_M_f)(); } in operator()
127 __fun_type _M_f;
134 explicit _Mem_fun1_ref(__fun_type __f) : _M_f(__f) {} in _Mem_fun1_ref()
137 _Result operator ()(_Tp& __p, _Arg __x) const { return (__p.*_M_f)(__x); } in operator()
140 __fun_type _M_f;
147 explicit _Const_mem_fun0_ref(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun0_ref()
150 _Result operator ()(const _Tp& __p) const { return (__p.*_M_f)(); } in operator()
153 __fun_type _M_f;
160 explicit _Const_mem_fun1_ref(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun1_ref()
163 _Result operator ()(const _Tp& __p, _Arg __x) const { return (__p.*_M_f)(__x); } in operator()
166 __fun_type _M_f;
192 explicit _Ptr_fun1_base(__fun_type __f) : _M_f(__f) {} in _Ptr_fun1_base()
195 _Result operator()(_Arg __x) const { return _M_f(__x); } in operator()
198 __fun_type _M_f;
205 explicit _Ptr_fun2_base(__fun_type __f) : _M_f(__f) {} in _Ptr_fun2_base()
208 _Result operator()(_Arg1 __x, _Arg2 __y) const { return _M_f(__x, __y); } in operator()
211 __fun_type _M_f;
230 explicit _Void_mem_fun0_ptr(__fun_type __f) : _M_f(__f) {} in _Void_mem_fun0_ptr()
233 void operator ()(_Tp* __p) const { (__p->*_M_f)(); } in operator()
236 __fun_type _M_f;
243 explicit _Void_mem_fun1_ptr(__fun_type __f) : _M_f(__f) {} in _Void_mem_fun1_ptr()
246 void operator ()(_Tp* __p, _Arg __x) const { (__p->*_M_f)(__x); } in operator()
249 __fun_type _M_f;
256 explicit _Void_const_mem_fun0_ptr(__fun_type __f) : _M_f(__f) {} in _Void_const_mem_fun0_ptr()
259 void operator ()(const _Tp* __p) const { (__p->*_M_f)(); } in operator()
262 __fun_type _M_f;
269 explicit _Void_const_mem_fun1_ptr(__fun_type __f) : _M_f(__f) {} in _Void_const_mem_fun1_ptr()
272 void operator ()(const _Tp* __p, _Arg __x) const { (__p->*_M_f)(__x); } in operator()
275 __fun_type _M_f;
282 explicit _Void_mem_fun0_ref(__fun_type __f) : _M_f(__f) {} in _Void_mem_fun0_ref()
285 void operator ()(_Tp& __p) const { (__p.*_M_f)(); } in operator()
288 __fun_type _M_f;
295 explicit _Void_mem_fun1_ref(__fun_type __f) : _M_f(__f) {} in _Void_mem_fun1_ref()
298 void operator ()(_Tp& __p, _Arg __x) const { (__p.*_M_f)(__x); } in operator()
301 __fun_type _M_f;
308 explicit _Void_const_mem_fun0_ref(__fun_type __f) : _M_f(__f) {} in _Void_const_mem_fun0_ref()
311 void operator ()(const _Tp& __p) const { (__p.*_M_f)(); } in operator()
314 __fun_type _M_f;
321 explicit _Void_const_mem_fun1_ref(__fun_type __f) : _M_f(__f) {} in _Void_const_mem_fun1_ref()
324 void operator ()(const _Tp& __p, _Arg __x) const { (__p.*_M_f)(__x); } in operator()
327 __fun_type _M_f;
351 explicit _Ptr_void_fun1_base(__fun_type __f) : _M_f(__f) {}
354 void operator()(_Arg __x) const { _M_f(__x); }
357 __fun_type _M_f;
364 explicit _Ptr_void_fun2_base(__fun_type __f) : _M_f(__f) {}
367 void operator()(_Arg1 __x, _Arg2 __y) const { _M_f(__x, __y); }
370 __fun_type _M_f;
502 explicit mem_fun_t(__fun_type __pf) : _M_f(__pf) {}
503 _Ret operator()(_Tp* __p) const { return (__p->*_M_f)(); }
505 __fun_type _M_f;
512 explicit const_mem_fun_t(__fun_type __pf) : _M_f(__pf) {}
513 _Ret operator()(const _Tp* __p) const { return (__p->*_M_f)(); }
515 __fun_type _M_f;
522 explicit mem_fun_ref_t(__fun_type __pf) : _M_f(__pf) {}
523 _Ret operator()(_Tp& __r) const { return (__r.*_M_f)(); }
525 __fun_type _M_f;
532 explicit const_mem_fun_ref_t(__fun_type __pf) : _M_f(__pf) {}
533 _Ret operator()(const _Tp& __r) const { return (__r.*_M_f)(); }
535 __fun_type _M_f;
542 explicit mem_fun1_t(__fun_type __pf) : _M_f(__pf) {}
543 _Ret operator()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); }
545 __fun_type _M_f;
552 explicit const_mem_fun1_t(__fun_type __pf) : _M_f(__pf) {}
554 { return (__p->*_M_f)(__x); }
556 __fun_type _M_f;
563 explicit mem_fun1_ref_t(__fun_type __pf) : _M_f(__pf) {}
564 _Ret operator()(_Tp& __r, _Arg __x) const { return (__r.*_M_f)(__x); }
566 __fun_type _M_f;
573 explicit const_mem_fun1_ref_t(__fun_type __pf) : _M_f(__pf) {}
574 _Ret operator()(const _Tp& __r, _Arg __x) const { return (__r.*_M_f)(__x); }
576 __fun_type _M_f;
609 explicit mem_fun_t _STLP_PSPEC2(void,_Tp) (__fun_type __pf) : _M_f(__pf) {}
610 void operator()(_Tp* __p) const { (__p->*_M_f)(); }
612 __fun_type _M_f;
619 explicit const_mem_fun_t _STLP_PSPEC2(void,_Tp) (__fun_type __pf) : _M_f(__pf) {}
620 void operator()(const _Tp* __p) const { (__p->*_M_f)(); }
622 __fun_type _M_f;
629 explicit mem_fun_ref_t _STLP_PSPEC2(void,_Tp) (__fun_type __pf) : _M_f(__pf) {}
630 void operator()(_Tp& __r) const { (__r.*_M_f)(); }
632 __fun_type _M_f;
639 explicit const_mem_fun_ref_t _STLP_PSPEC2(void,_Tp) (__fun_type __pf) : _M_f(__pf) {}
640 void operator()(const _Tp& __r) const { (__r.*_M_f)(); }
642 __fun_type _M_f;
649 explicit mem_fun1_t _STLP_PSPEC3(void,_Tp,_Arg) (__fun_type __pf) : _M_f(__pf) {}
650 void operator()(_Tp* __p, _Arg __x) const { (__p->*_M_f)(__x); }
652 __fun_type _M_f;
660 explicit const_mem_fun1_t _STLP_PSPEC3(void,_Tp,_Arg) (__fun_type __pf) : _M_f(__pf) {}
661 void operator()(const _Tp* __p, _Arg __x) const { (__p->*_M_f)(__x); }
663 __fun_type _M_f;
671 explicit mem_fun1_ref_t _STLP_PSPEC3(void,_Tp,_Arg) (__fun_type __pf) : _M_f(__pf) {}
672 void operator()(_Tp& __r, _Arg __x) const { (__r.*_M_f)(__x); }
674 __fun_type _M_f;
682 explicit const_mem_fun1_ref_t _STLP_PSPEC3(void,_Tp,_Arg) (__fun_type __pf) : _M_f(__pf) {}
683 void operator()(const _Tp& __r, _Arg __x) const { (__r.*_M_f)(__x); }
685 __fun_type _M_f;