Home | History | Annotate | Download | only in stl

Lines Matching refs:__x

81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
82 { return __x.first == __y.first && __x.second == __y.second; }
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
93 { return !(__x == __y); }
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
97 { return __y < __x; }
100 inline bool _STLP_CALL operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
101 { return !(__y < __x); }
104 inline bool _STLP_CALL operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
105 { return !(__x < __y); }
110 inline pair<_T1, _T2 const*> make_pair(_T1 const& __x,
112 { return pair<_T1, _T2 const*>(__x, static_cast<_T2 const*>(__y)); }
115 inline pair<_T1 const*, _T2> make_pair(_T1 const (&__x)[_Sz],
117 { return pair<_T1 const*, _T2>(static_cast<_T1 const*>(__x), __y); }
120 inline pair<_T1 const*, _T2 const*> make_pair(_T1 const (&__x)[_Sz1],
122 return pair<_T1 const*, _T2 const*>(static_cast<_T1 const*>(__x),
128 inline pair<_T1, _T2> _STLP_CALL make_pair(_T1 __x, _T2 __y)
129 { return pair<_T1, _T2>(__x, __y); }
137 inline bool _STLP_CALL operator!=(const _Tp& __x, const _Tp& __y)
138 { return !(__x == __y); }
141 inline bool _STLP_CALL operator>(const _Tp& __x, const _Tp& __y)
142 { return __y < __x; }
145 inline bool _STLP_CALL operator<=(const _Tp& __x, const _Tp& __y)
146 { return !(__y < __x); }
149 inline bool _STLP_CALL operator>=(const _Tp& __x, const _Tp& __y)
150 { return !(__x < __y); }