Lines Matching refs:__e
256 error_condition(_Ep __e,
259 {*this = make_error_condition(__e);}
275 operator=(_Ep __e) _NOEXCEPT
276 {*this = make_error_condition(__e); return *this;}
299 make_error_condition(errc __e) _NOEXCEPT
301 return error_condition(static_cast<int>(__e), generic_category());
328 error_code(_Ep __e,
331 {*this = make_error_code(__e);}
347 operator=(_Ep __e) _NOEXCEPT
348 {*this = make_error_code(__e); return *this;}
376 make_error_code(errc __e) _NOEXCEPT
378 return error_code(static_cast<int>(__e), generic_category());