Lines Matching refs:__x
473 operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT
475 return __x.category() < __y.category()
476 || (__x.category() == __y.category() && __x.value() < __y.value());
550 operator<(const error_code& __x, const error_code& __y) _NOEXCEPT
552 return __x.category() < __y.category()
553 || (__x.category() == __y.category() && __x.value() < __y.value());
558 operator==(const error_code& __x, const error_code& __y) _NOEXCEPT
560 return __x.category() == __y.category() && __x.value() == __y.value();
565 operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT
567 return __x.category().equivalent(__x.value(), __y)
568 || __y.category().equivalent(__x, __y.value());
573 operator==(const error_condition& __x, const error_code& __y) _NOEXCEPT
575 return __y == __x;
580 operator==(const error_condition& __x, const error_condition& __y) _NOEXCEPT
582 return __x.category() == __y.category() && __x.value() == __y.value();
587 operator!=(const error_code& __x, const error_code& __y) _NOEXCEPT
588 {return !(__x == __y);}
592 operator!=(const error_code& __x, const error_condition& __y) _NOEXCEPT
593 {return !(__x == __y);}
597 operator!=(const error_condition& __x, const error_code& __y) _NOEXCEPT
598 {return !(__x == __y);}
602 operator!=(const error_condition& __x, const error_condition& __y) _NOEXCEPT
603 {return !(__x == __y);}