Home | History | Annotate | Download | only in tr1_impl

Lines Matching full:pair

44    // Various functions which give std::pair a tuple-like interface.
46 struct tuple_size<std::pair<_Tp1, _Tp2> >
59 tuple_size<std::pair<_Tp1, _Tp2> >::value;
62 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
66 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
80 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
84 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
92 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
96 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
105 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
106 get(std::pair<_Tp1, _Tp2>& __in)
114 inline const typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
115 get(const std::pair<_Tp1, _Tp2>& __in)