Lines Matching refs:R
125 template <class R>
128 typedef R result_type;
129 typedef R (* function_type )();
131 R operator()() const in operator ()()
147 template <class R, class C>
150 typedef R result_type;
151 typedef R (C::* function_type )() const;
153 R operator()( in operator ()()
171 template <class R, class C, class P>
174 typedef R result_type;
175 typedef R (C::* function_type )(P&) const;
177 R operator()( in operator ()()
202 template <class R>
203 inline func::ff_pn_cn<R>
204 make_func( R(*i_f)() ) in make_func()
206 return func::ff_pn_cn<R>(i_f); in make_func()
233 template <class R, class C>
234 inline func::fc_pn_co<R,C>
235 make_func( R(C::*i_f)() const ) in make_func()
237 return func::fc_pn_co<R,C>(i_f); in make_func()
245 template <class R, class C, class P>
246 inline func::fc_pm_co<R,C,P>
247 make_func( R(C::*i_f)(P &) const, P & i_p) in make_func()
249 return func::fc_pm_co<R,C,P>(i_f, i_p); in make_func()