Home
last modified time | relevance | path

Searched refs:_M_f (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_function_adaptors.h68 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()
[all …]
D_iomanip.h39 : _M_f(__f), _M_arg(__arg) {} in _Ios_Manip_1()
42 { (__ios.*_M_f)(_M_arg); } in operator()
44 __f_ptr_type _M_f; member