• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/include/c++/4.5.3/bits/

Lines Matching refs:_Arg

99   template<typename _Arg, typename _Result>
102 typedef _Arg argument_type; ///< @c argument_type is the type of the
416 template<typename _Arg, typename _Result>
417 class pointer_to_unary_function : public unary_function<_Arg, _Result>
420 _Result (*_M_ptr)(_Arg);
426 pointer_to_unary_function(_Result (*__x)(_Arg))
430 operator()(_Arg __x) const
435 template<typename _Arg, typename _Result>
436 inline pointer_to_unary_function<_Arg, _Result>
437 ptr_fun(_Result (*__x)(_Arg))
438 { return pointer_to_unary_function<_Arg, _Result>(__x); }
595 template<typename _Ret, typename _Tp, typename _Arg>
596 class mem_fun1_t : public binary_function<_Tp*, _Arg, _Ret>
600 mem_fun1_t(_Ret (_Tp::*__pf)(_Arg))
604 operator()(_Tp* __p, _Arg __x) const
608 _Ret (_Tp::*_M_f)(_Arg);
613 template<typename _Ret, typename _Tp, typename _Arg>
614 class const_mem_fun1_t : public binary_function<const _Tp*, _Arg, _Ret>
618 const_mem_fun1_t(_Ret (_Tp::*__pf)(_Arg) const)
622 operator()(const _Tp* __p, _Arg __x) const
626 _Ret (_Tp::*_M_f)(_Arg) const;
631 template<typename _Ret, typename _Tp, typename _Arg>
632 class mem_fun1_ref_t : public binary_function<_Tp, _Arg, _Ret>
636 mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg))
640 operator()(_Tp& __r, _Arg __x) const
644 _Ret (_Tp::*_M_f)(_Arg);
649 template<typename _Ret, typename _Tp, typename _Arg>
650 class const_mem_fun1_ref_t : public binary_function<_Tp, _Arg, _Ret>
654 const_mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg) const)
658 operator()(const _Tp& __r, _Arg __x) const
662 _Ret (_Tp::*_M_f)(_Arg) const;
687 template<typename _Ret, typename _Tp, typename _Arg>
688 inline mem_fun1_t<_Ret, _Tp, _Arg>
689 mem_fun(_Ret (_Tp::*__f)(_Arg))
690 { return mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
692 template<typename _Ret, typename _Tp, typename _Arg>
693 inline const_mem_fun1_t<_Ret, _Tp, _Arg>
694 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
695 { return const_mem_fun1_t<_Ret, _Tp, _Arg>(__f); }
697 template<typename _Ret, typename _Tp, typename _Arg>
698 inline mem_fun1_ref_t<_Ret, _Tp, _Arg>
699 mem_fun_ref(_Ret (_Tp::*__f)(_Arg))
700 { return mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); }
702 template<typename _Ret, typename _Tp, typename _Arg>
703 inline const_mem_fun1_ref_t<_Ret, _Tp, _Arg>
704 mem_fun_ref(_Ret (_Tp::*__f)(_Arg) const)
705 { return const_mem_fun1_ref_t<_Ret, _Tp, _Arg>(__f); }