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);
224 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
229 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
235 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
237 return __x.c == __y.c;
243 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
245 return __x.c < __y.c;
251 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
253 return !(__x == __y);
259 operator> (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
261 return __y < __x;
267 operator>=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
269 return !(__x < __y);
275 operator<=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
277 return !(__y < __x);
286 swap(stack<_Tp, _Container>& __x, stack<_Tp, _Container>& __y)
287 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
289 __x.swap(__y);