Lines Matching refs:__y
105 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
110 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
230 operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
235 operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
257 operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
259 return __x.c == __y.c;
265 operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
267 return __x.c < __y.c;
273 operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
275 return !(__x == __y);
281 operator> (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
283 return __y < __x;
289 operator>=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
291 return !(__x < __y);
297 operator<=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
299 return !(__y < __x);
308 swap(stack<_Tp, _Container>& __x, stack<_Tp, _Container>& __y)
309 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
311 __x.swap(__y);