Symbol: _Arg
headers/cpp/std/valarray_meta.h
243
template<typename _Dom, typename _Arg> class _FunBase {
headers/cpp/std/valarray_meta.h
247
_FunBase (const _Dom& __e, value_type __f(_Arg))
headers/cpp/std/valarray_meta.h
256
value_type (*_M_func)(_Arg);
headers/cpp/std/valarray_meta.h
304
template<template<class> class _Oper, typename _Arg>
headers/cpp/std/valarray_meta.h
307
typedef _Oper<typename _Arg::value_type> _Op;
headers/cpp/std/valarray_meta.h
310
_UnBase (const _Arg& __e) : _M_expr(__e) {}
headers/cpp/std/valarray_meta.h
315
const _Arg& _M_expr;
headers/cpp/std/valarray_meta.h
318
template<template<class> class _Oper, typename _Arg>
headers/cpp/std/valarray_meta.h
319
inline typename _UnBase<_Oper, _Arg>::value_type
headers/cpp/std/valarray_meta.h
320
_UnBase<_Oper, _Arg>::operator[] (size_t __i) const
headers/cpp/std/valarray_meta.h
329
_UnClos (const _Arg& __e) : _Base(__e) {}
headers/cpp/std/valarray_meta.h
338
_UnClos (const _Arg& __e) : _Base(__e) {}
headers/cpp/std/valarray_meta.h
779
typedef typename _Name<_Arg>::result_type _Value; \
headers/cpp/std/valarray_meta.h
791
typedef typename _Name<_Arg>::result_type _Value; \
headers/cpp/std/valarray_meta.h
792
typedef _BinClos<_Name,_Expr,_Constant,_Dom,_Arg> _Closure; \
headers/cpp/std/valarray_meta.h
803
typedef typename _Name<_Arg>::result_type _Value; \
headers/cpp/std/valarray_meta.h
815
typedef typename _Name<_Arg>::result_type _Value; \
headers/cpp/std/valarray_meta.h
816
typedef _BinClos<_Name,_Expr,_ValArray,_Dom,_Arg> _Closure; \
headers/cpp/std/valarray_meta.h
863
typedef _BinClos<_Name,_Expr,_Constant,_Dom,_Arg> _Closure; \
headers/cpp/stl_function.h
289
template <class _Arg, class _Result>
headers/cpp/stl_function.h
290
class pointer_to_unary_function : public unary_function<_Arg, _Result> {
headers/cpp/stl_function.h
292
_Result (*_M_ptr)(_Arg);
headers/cpp/stl_function.h
295
explicit pointer_to_unary_function(_Result (*__x)(_Arg)) : _M_ptr(__x) {}
headers/cpp/stl_function.h
296
_Result operator()(_Arg __x) const { return _M_ptr(__x); }
headers/cpp/stl_function.h
299
template <class _Arg, class _Result>
headers/cpp/stl_function.h
300
inline pointer_to_unary_function<_Arg, _Result> ptr_fun(_Result (*__x)(_Arg))
headers/cpp/stl_function.h
302
return pointer_to_unary_function<_Arg, _Result>(__x);
headers/cpp/stl_function.h
36
template <class _Arg, class _Result>
headers/cpp/stl_function.h
38
typedef _Arg argument_type;
headers/cpp/stl_function.h
523
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
524
class mem_fun1_t : public binary_function<_Tp*,_Arg,_Ret> {
headers/cpp/stl_function.h
526
explicit mem_fun1_t(_Ret (_Tp::*__pf)(_Arg)) : _M_f(__pf) {}
headers/cpp/stl_function.h
527
_Ret operator()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); }
headers/cpp/stl_function.h
529
_Ret (_Tp::*_M_f)(_Arg);
headers/cpp/stl_function.h
532
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
533
class const_mem_fun1_t : public binary_function<const _Tp*,_Arg,_Ret> {
headers/cpp/stl_function.h
535
explicit const_mem_fun1_t(_Ret (_Tp::*__pf)(_Arg) const) : _M_f(__pf) {}
headers/cpp/stl_function.h
536
_Ret operator()(const _Tp* __p, _Arg __x) const
headers/cpp/stl_function.h
539
_Ret (_Tp::*_M_f)(_Arg) const;
headers/cpp/stl_function.h
542
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
543
class mem_fun1_ref_t : public binary_function<_Tp,_Arg,_Ret> {
headers/cpp/stl_function.h
545
explicit mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg)) : _M_f(__pf) {}
headers/cpp/stl_function.h
546
_Ret operator()(_Tp& __r, _Arg __x) const { return (__r.*_M_f)(__x); }
headers/cpp/stl_function.h
548
_Ret (_Tp::*_M_f)(_Arg);
headers/cpp/stl_function.h
551
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
552
class const_mem_fun1_ref_t : public binary_function<_Tp,_Arg,_Ret> {
headers/cpp/stl_function.h
554
explicit const_mem_fun1_ref_t(_Ret (_Tp::*__pf)(_Arg) const) : _M_f(__pf) {}
headers/cpp/stl_function.h
555
_Ret operator()(const _Tp& __r, _Arg __x) const { return (__r.*_M_f)(__x); }
headers/cpp/stl_function.h
557
_Ret (_Tp::*_M_f)(_Arg) const;
headers/cpp/stl_function.h
598
template <class _Tp, class _Arg>
headers/cpp/stl_function.h
599
class mem_fun1_t<void, _Tp, _Arg> : public binary_function<_Tp*,_Arg,void> {
headers/cpp/stl_function.h
601
explicit mem_fun1_t(void (_Tp::*__pf)(_Arg)) : _M_f(__pf) {}
headers/cpp/stl_function.h
602
void operator()(_Tp* __p, _Arg __x) const { (__p->*_M_f)(__x); }
headers/cpp/stl_function.h
604
void (_Tp::*_M_f)(_Arg);
headers/cpp/stl_function.h
607
template <class _Tp, class _Arg>
headers/cpp/stl_function.h
608
class const_mem_fun1_t<void, _Tp, _Arg>
headers/cpp/stl_function.h
609
: public binary_function<const _Tp*,_Arg,void> {
headers/cpp/stl_function.h
611
explicit const_mem_fun1_t(void (_Tp::*__pf)(_Arg) const) : _M_f(__pf) {}
headers/cpp/stl_function.h
612
void operator()(const _Tp* __p, _Arg __x) const { (__p->*_M_f)(__x); }
headers/cpp/stl_function.h
614
void (_Tp::*_M_f)(_Arg) const;
headers/cpp/stl_function.h
617
template <class _Tp, class _Arg>
headers/cpp/stl_function.h
618
class mem_fun1_ref_t<void, _Tp, _Arg>
headers/cpp/stl_function.h
619
: public binary_function<_Tp,_Arg,void> {
headers/cpp/stl_function.h
621
explicit mem_fun1_ref_t(void (_Tp::*__pf)(_Arg)) : _M_f(__pf) {}
headers/cpp/stl_function.h
622
void operator()(_Tp& __r, _Arg __x) const { (__r.*_M_f)(__x); }
headers/cpp/stl_function.h
624
void (_Tp::*_M_f)(_Arg);
headers/cpp/stl_function.h
627
template <class _Tp, class _Arg>
headers/cpp/stl_function.h
628
class const_mem_fun1_ref_t<void, _Tp, _Arg>
headers/cpp/stl_function.h
629
: public binary_function<_Tp,_Arg,void> {
headers/cpp/stl_function.h
631
explicit const_mem_fun1_ref_t(void (_Tp::*__pf)(_Arg) const) : _M_f(__pf) {}
headers/cpp/stl_function.h
632
void operator()(const _Tp& __r, _Arg __x) const { (__r.*_M_f)(__x); }
headers/cpp/stl_function.h
634
void (_Tp::*_M_f)(_Arg) const;
headers/cpp/stl_function.h
660
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
661
inline mem_fun1_t<_Ret,_Tp,_Arg> mem_fun(_Ret (_Tp::*__f)(_Arg))
headers/cpp/stl_function.h
662
{ return mem_fun1_t<_Ret,_Tp,_Arg>(__f); }
headers/cpp/stl_function.h
664
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
665
inline const_mem_fun1_t<_Ret,_Tp,_Arg> mem_fun(_Ret (_Tp::*__f)(_Arg) const)
headers/cpp/stl_function.h
666
{ return const_mem_fun1_t<_Ret,_Tp,_Arg>(__f); }
headers/cpp/stl_function.h
668
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
669
inline mem_fun1_ref_t<_Ret,_Tp,_Arg> mem_fun_ref(_Ret (_Tp::*__f)(_Arg))
headers/cpp/stl_function.h
670
{ return mem_fun1_ref_t<_Ret,_Tp,_Arg>(__f); }
headers/cpp/stl_function.h
672
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
673
inline const_mem_fun1_ref_t<_Ret,_Tp,_Arg>
headers/cpp/stl_function.h
674
mem_fun_ref(_Ret (_Tp::*__f)(_Arg) const)
headers/cpp/stl_function.h
675
{ return const_mem_fun1_ref_t<_Ret,_Tp,_Arg>(__f); }
headers/cpp/stl_function.h
677
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
678
inline mem_fun1_t<_Ret,_Tp,_Arg> mem_fun1(_Ret (_Tp::*__f)(_Arg))
headers/cpp/stl_function.h
679
{ return mem_fun1_t<_Ret,_Tp,_Arg>(__f); }
headers/cpp/stl_function.h
681
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
682
inline const_mem_fun1_t<_Ret,_Tp,_Arg> mem_fun1(_Ret (_Tp::*__f)(_Arg) const)
headers/cpp/stl_function.h
683
{ return const_mem_fun1_t<_Ret,_Tp,_Arg>(__f); }
headers/cpp/stl_function.h
685
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
686
inline mem_fun1_ref_t<_Ret,_Tp,_Arg> mem_fun1_ref(_Ret (_Tp::*__f)(_Arg))
headers/cpp/stl_function.h
687
{ return mem_fun1_ref_t<_Ret,_Tp,_Arg>(__f); }
headers/cpp/stl_function.h
689
template <class _Ret, class _Tp, class _Arg>
headers/cpp/stl_function.h
690
inline const_mem_fun1_ref_t<_Ret,_Tp,_Arg>
headers/cpp/stl_function.h
691
mem_fun1_ref(_Ret (_Tp::*__f)(_Arg) const)
headers/cpp/stl_function.h
692
{ return const_mem_fun1_ref_t<_Ret,_Tp,_Arg>(__f); }