Lines Matching refs:__e
423 error_condition(_Ep __e,
426 {*this = make_error_condition(__e);}
442 operator=(_Ep __e) _NOEXCEPT
443 {*this = make_error_condition(__e); return *this;}
466 make_error_condition(errc __e) _NOEXCEPT
468 return error_condition(static_cast<int>(__e), generic_category());
495 error_code(_Ep __e,
498 {*this = make_error_code(__e);}
514 operator=(_Ep __e) _NOEXCEPT
515 {*this = make_error_code(__e); return *this;}
543 make_error_code(errc __e) _NOEXCEPT
545 return error_code(static_cast<int>(__e), generic_category());