Lines Matching refs:C
147 template <class R, class C>
151 typedef R (C::* function_type )() const;
154 const C & i_c ) const in operator ()()
171 template <class R, class C, class P>
175 typedef R (C::* function_type )(P&) const;
178 const C & i_c ) const in operator ()()
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()
269 template <class C, class F>
271 for_each_in(const C & i_container, F io_functionToBeCalled) in for_each_in()
273 typename C::const_iterator const in for_each_in()
275 for ( typename C::const_iterator it = i_container.begin(); in for_each_in()
284 template <class C, class F>
286 for_each_in(C & i_container, F io_functionToBeCalled) in for_each_in()
288 typename C::iterator const in for_each_in()
290 for ( typename C::iterator it = i_container.begin(); in for_each_in()