Home | History | Annotate | Download | only in include

Lines Matching refs:__y

78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
80 return __x.first == __y.first && __x.second == __y.second;
84 inline bool 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);
91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
92 return !(__x == __y);
96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
97 return __y < __x;
101 inline bool operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
102 return !(__y < __x);
106 inline bool operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
107 return !(__x < __y);
111 inline pair<_T1, _T2> make_pair(_T1 __x, _T2 __y)
113 return pair<_T1, _T2>(__x, __y);