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);
225 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
230 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
236 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
238 return __x.c == __y.c;
244 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
246 return __x.c < __y.c;
252 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
254 return !(__x == __y);
260 operator> (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
262 return __y < __x;
268 operator>=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
270 return !(__x < __y);
276 operator<=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
278 return !(__y < __x);
287 swap(stack<_Tp, _Container>& __x, stack<_Tp, _Container>& __y)
288 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
290 __x.swap(__y);