Lines Matching refs:_NOEXCEPT

368     virtual ~error_category() _NOEXCEPT;
371 error_category() _NOEXCEPT;
374 _LIBCPP_CONSTEXPR_AFTER_CXX11 error_category() _NOEXCEPT _LIBCPP_DEFAULT;
381 virtual const char* name() const _NOEXCEPT = 0;
382 virtual error_condition default_error_condition(int __ev) const _NOEXCEPT;
383 virtual bool equivalent(int __code, const error_condition& __condition) const _NOEXCEPT;
384 virtual bool equivalent(const error_code& __code, int __condition) const _NOEXCEPT;
388 bool operator==(const error_category& __rhs) const _NOEXCEPT {return this == &__rhs;}
391 bool operator!=(const error_category& __rhs) const _NOEXCEPT {return !(*this == __rhs);}
394 bool operator< (const error_category& __rhs) const _NOEXCEPT {return this < &__rhs;}
406 _LIBCPP_FUNC_VIS const error_category& generic_category() _NOEXCEPT;
407 _LIBCPP_FUNC_VIS const error_category& system_category() _NOEXCEPT;
415 error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
418 error_condition(int __val, const error_category& __cat) _NOEXCEPT
425 ) _NOEXCEPT
429 void assign(int __val, const error_category& __cat) _NOEXCEPT
442 operator=(_Ep __e) _NOEXCEPT
446 void clear() _NOEXCEPT
453 int value() const _NOEXCEPT {return __val_;}
456 const error_category& category() const _NOEXCEPT {return *__cat_;}
461 operator bool() const _NOEXCEPT {return __val_ != 0;}
466 make_error_condition(errc __e) _NOEXCEPT
473 operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT
487 error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
490 error_code(int __val, const error_category& __cat) _NOEXCEPT
497 ) _NOEXCEPT
501 void assign(int __val, const error_category& __cat) _NOEXCEPT
514 operator=(_Ep __e) _NOEXCEPT
518 void clear() _NOEXCEPT
525 int value() const _NOEXCEPT {return __val_;}
528 const error_category& category() const _NOEXCEPT {return *__cat_;}
531 error_condition default_error_condition() const _NOEXCEPT
538 operator bool() const _NOEXCEPT {return __val_ != 0;}
543 make_error_code(errc __e) _NOEXCEPT
550 operator<(const error_code& __x, const error_code& __y) _NOEXCEPT
558 operator==(const error_code& __x, const error_code& __y) _NOEXCEPT
565 operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT
573 operator==(const error_condition& __x, const error_code& __y) _NOEXCEPT
580 operator==(const error_condition& __x, const error_condition& __y) _NOEXCEPT
587 operator!=(const error_code& __x, const error_code& __y) _NOEXCEPT
592 operator!=(const error_code& __x, const error_condition& __y) _NOEXCEPT
597 operator!=(const error_condition& __x, const error_code& __y) _NOEXCEPT
602 operator!=(const error_condition& __x, const error_condition& __y) _NOEXCEPT
610 size_t operator()(const error_code& __ec) const _NOEXCEPT
629 ~system_error() _NOEXCEPT;
632 const error_code& code() const _NOEXCEPT {return __ec_;}