Lines Matching refs:noexcept
22 virtual ~error_category() noexcept;
28 virtual const char* name() const noexcept = 0;
29 virtual error_condition default_error_condition(int ev) const noexcept;
30 virtual bool equivalent(int code, const error_condition& condition) const noexcept;
31 virtual bool equivalent(const error_code& code, int condition) const noexcept;
34 bool operator==(const error_category& rhs) const noexcept;
35 bool operator!=(const error_category& rhs) const noexcept;
36 bool operator<(const error_category& rhs) const noexcept;
39 const error_category& generic_category() noexcept;
40 const error_category& system_category() noexcept;
58 error_code() noexcept;
59 error_code(int val, const error_category& cat) noexcept;
61 error_code(ErrorCodeEnum e) noexcept;
64 void assign(int val, const error_category& cat) noexcept;
66 error_code& operator=(ErrorCodeEnum e) noexcept;
67 void clear() noexcept;
70 int value() const noexcept;
71 const error_category& category() const noexcept;
72 error_condition default_error_condition() const noexcept;
74 explicit operator bool() const noexcept;
78 bool operator<(const error_code& lhs, const error_code& rhs) noexcept;
87 error_condition() noexcept;
88 error_condition(int val, const error_category& cat) noexcept;
90 error_condition(ErrorConditionEnum e) noexcept;
93 void assign(int val, const error_category& cat) noexcept;
95 error_condition& operator=(ErrorConditionEnum e) noexcept;
96 void clear() noexcept;
99 int value() const noexcept;
100 const error_category& category() const noexcept;
101 string message() const noexcept;
102 explicit operator bool() const noexcept;
105 bool operator<(const error_condition& lhs, const error_condition& rhs) noexcept;
118 const error_code& code() const noexcept;
119 const char* what() const noexcept;
125 error_code make_error_code(errc e) noexcept;
126 error_condition make_error_condition(errc e) noexcept;
129 bool operator==(const error_code& lhs, const error_code& rhs) noexcept;
130 bool operator==(const error_code& lhs, const error_condition& rhs) noexcept;
131 bool operator==(const error_condition& lhs, const error_code& rhs) noexcept;
132 bool operator==(const error_condition& lhs, const error_condition& rhs) noexcept;
133 bool operator!=(const error_code& lhs, const error_code& rhs) noexcept;
134 bool operator!=(const error_code& lhs, const error_condition& rhs) noexcept;
135 bool operator!=(const error_condition& lhs, const error_code& rhs) noexcept;
136 bool operator!=(const error_condition& lhs, const error_condition& rhs) noexcept;