Lines Matching refs:__y
86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
88 return __x.first == __y.first && __x.second == __y.second;
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
94 return __x.first < __y.first ||
95 (!(__y.first < __x.first) && __x.second < __y.second);
99 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
100 return !(__x == __y);
104 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
105 return __y < __x;
109 inline bool operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
110 return !(__y < __x);
114 inline bool operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
115 return !(__x < __y);
119 inline pair<_T1, _T2> make_pair(_T1 __x, _T2 __y) in make_pair() argument
121 return pair<_T1, _T2>(__x, __y); in make_pair()