Lines Matching refs:error_code
73 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
74 return std::error_code(static_cast<int>(ErrorErrorCode::MultipleErrors), in convertToErrorCode()
78 std::error_code inconvertibleErrorCode() { in inconvertibleErrorCode()
79 return std::error_code(static_cast<int>(ErrorErrorCode::InconvertibleError), in inconvertibleErrorCode()
83 std::error_code FileError::convertToErrorCode() const { in convertToErrorCode()
84 return std::error_code(static_cast<int>(ErrorErrorCode::FileError), in convertToErrorCode()
88 Error errorCodeToError(std::error_code EC) { in errorCodeToError()
94 std::error_code errorToErrorCode(Error Err) { in errorToErrorCode()
95 std::error_code EC; in errorToErrorCode()
116 StringError::StringError(std::error_code EC, const Twine &S) in StringError()
119 StringError::StringError(const Twine &S, std::error_code EC) in StringError()
132 std::error_code StringError::convertToErrorCode() const { in convertToErrorCode()
136 Error createStringError(std::error_code EC, char const *Msg) { in createStringError()