Lines Matching refs:__e
259 error_condition(_Ep __e,
262 {*this = make_error_condition(__e);}
278 operator=(_Ep __e) _NOEXCEPT
279 {*this = make_error_condition(__e); return *this;}
301 make_error_condition(errc __e) _NOEXCEPT
303 return error_condition(static_cast<int>(__e), generic_category());
330 error_code(_Ep __e,
333 {*this = make_error_code(__e);}
349 operator=(_Ep __e) _NOEXCEPT
350 {*this = make_error_code(__e); return *this;}
377 make_error_code(errc __e) _NOEXCEPT
379 return error_code(static_cast<int>(__e), generic_category());