Lines Matching refs:noexcept
23 virtual ~error_category() noexcept;
29 virtual const char* name() const noexcept = 0;
30 virtual error_condition default_error_condition(int ev) const noexcept;
31 virtual bool equivalent(int code, const error_condition& condition) const noexcept;
32 virtual bool equivalent(const error_code& code, int condition) const noexcept;
35 bool operator==(const error_category& rhs) const noexcept;
36 bool operator!=(const error_category& rhs) const noexcept;
37 bool operator<(const error_category& rhs) const noexcept;
40 const error_category& generic_category() noexcept;
41 const error_category& system_category() noexcept;
59 error_code() noexcept;
60 error_code(int val, const error_category& cat) noexcept;
62 error_code(ErrorCodeEnum e) noexcept;
65 void assign(int val, const error_category& cat) noexcept;
67 error_code& operator=(ErrorCodeEnum e) noexcept;
68 void clear() noexcept;
71 int value() const noexcept;
72 const error_category& category() const noexcept;
73 error_condition default_error_condition() const noexcept;
75 explicit operator bool() const noexcept;
79 bool operator<(const error_code& lhs, const error_code& rhs) noexcept;
88 error_condition() noexcept;
89 error_condition(int val, const error_category& cat) noexcept;
91 error_condition(ErrorConditionEnum e) noexcept;
94 void assign(int val, const error_category& cat) noexcept;
96 error_condition& operator=(ErrorConditionEnum e) noexcept;
97 void clear() noexcept;
100 int value() const noexcept;
101 const error_category& category() const noexcept;
102 string message() const noexcept;
103 explicit operator bool() const noexcept;
106 bool operator<(const error_condition& lhs, const error_condition& rhs) noexcept;
119 const error_code& code() const noexcept;
120 const char* what() const noexcept;
126 error_code make_error_code(errc e) noexcept;
127 error_condition make_error_condition(errc e) noexcept;
130 bool operator==(const error_code& lhs, const error_code& rhs) noexcept;
131 bool operator==(const error_code& lhs, const error_condition& rhs) noexcept;
132 bool operator==(const error_condition& lhs, const error_code& rhs) noexcept;
133 bool operator==(const error_condition& lhs, const error_condition& rhs) noexcept;
134 bool operator!=(const error_code& lhs, const error_code& rhs) noexcept;
135 bool operator!=(const error_code& lhs, const error_condition& rhs) noexcept;
136 bool operator!=(const error_condition& lhs, const error_code& rhs) noexcept;
137 bool operator!=(const error_condition& lhs, const error_condition& rhs) noexcept;