• Home
  • Raw
  • Download

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;
53 error_code() noexcept;
54 error_code(int val, const error_category& cat) noexcept;
56 error_code(ErrorCodeEnum e) noexcept;
59 void assign(int val, const error_category& cat) noexcept;
61 error_code& operator=(ErrorCodeEnum e) noexcept;
62 void clear() noexcept;
65 int value() const noexcept;
66 const error_category& category() const noexcept;
67 error_condition default_error_condition() const noexcept;
69 explicit operator bool() const noexcept;
73 bool operator<(const error_code& lhs, const error_code& rhs) noexcept;
82 error_condition() noexcept;
83 error_condition(int val, const error_category& cat) noexcept;
85 error_condition(ErrorConditionEnum e) noexcept;
88 void assign(int val, const error_category& cat) noexcept;
90 error_condition& operator=(ErrorConditionEnum e) noexcept;
91 void clear() noexcept;
94 int value() const noexcept;
95 const error_category& category() const noexcept;
96 string message() const noexcept;
97 explicit operator bool() const noexcept;
100 bool operator<(const error_condition& lhs, const error_condition& rhs) noexcept;
113 const error_code& code() const noexcept;
114 const char* what() const noexcept;
202 error_code make_error_code(errc e) noexcept;
203 error_condition make_error_condition(errc e) noexcept;
206 bool operator==(const error_code& lhs, const error_code& rhs) noexcept;
207 bool operator==(const error_code& lhs, const error_condition& rhs) noexcept;
208 bool operator==(const error_condition& lhs, const error_code& rhs) noexcept;
209 bool operator==(const error_condition& lhs, const error_condition& rhs) noexcept;
210 bool operator!=(const error_code& lhs, const error_code& rhs) noexcept;
211 bool operator!=(const error_code& lhs, const error_condition& rhs) noexcept;
212 bool operator!=(const error_condition& lhs, const error_code& rhs) noexcept;
213 bool operator!=(const error_condition& lhs, const error_condition& rhs) noexcept;