Lines Matching refs:__e
255 error_condition(_Ep __e,
258 {*this = make_error_condition(__e);}
274 operator=(_Ep __e) _NOEXCEPT
275 {*this = make_error_condition(__e); return *this;}
298 make_error_condition(errc __e) _NOEXCEPT
300 return error_condition(static_cast<int>(__e), generic_category());
327 error_code(_Ep __e,
330 {*this = make_error_code(__e);}
346 operator=(_Ep __e) _NOEXCEPT
347 {*this = make_error_code(__e); return *this;}
375 make_error_code(errc __e) _NOEXCEPT
377 return error_code(static_cast<int>(__e), generic_category());