Lines Matching refs:__y
306 operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT
308 return __x.category() < __y.category()
309 || (__x.category() == __y.category() && __x.value() < __y.value());
383 operator<(const error_code& __x, const error_code& __y) _NOEXCEPT
385 return __x.category() < __y.category()
386 || (__x.category() == __y.category() && __x.value() < __y.value());
391 operator==(const error_code& __x, const error_code& __y) _NOEXCEPT
393 return __x.category() == __y.category() && __x.value() == __y.value();
398 operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT
400 return __x.category().equivalent(__x.value(), __y)
401 || __y.category().equivalent(__x, __y.value());
406 operator==(const error_condition& __x, const error_code& __y) _NOEXCEPT
408 return __y == __x;
413 operator==(const error_condition& __x, const error_condition& __y) _NOEXCEPT
415 return __x.category() == __y.category() && __x.value() == __y.value();
420 operator!=(const error_code& __x, const error_code& __y) _NOEXCEPT
421 {return !(__x == __y);}
425 operator!=(const error_code& __x, const error_condition& __y) _NOEXCEPT
426 {return !(__x == __y);}
430 operator!=(const error_condition& __x, const error_code& __y) _NOEXCEPT
431 {return !(__x == __y);}
435 operator!=(const error_condition& __x, const error_condition& __y) _NOEXCEPT
436 {return !(__x == __y);}