Lines Matching refs:__y
99 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
104 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
219 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
224 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
230 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
232 return __x.c == __y.c;
238 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
240 return __x.c < __y.c;
246 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
248 return !(__x == __y);
254 operator> (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
256 return __y < __x;
262 operator>=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
264 return !(__x < __y);
270 operator<=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
272 return !(__y < __x);
278 swap(stack<_Tp, _Container>& __x, stack<_Tp, _Container>& __y)
279 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
281 __x.swap(__y);