Lines Matching refs:error_code
85 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
86 return std::error_code(static_cast<int>(ErrorErrorCode::MultipleErrors), in convertToErrorCode()
90 std::error_code inconvertibleErrorCode() { in inconvertibleErrorCode()
91 return std::error_code(static_cast<int>(ErrorErrorCode::InconvertibleError), in inconvertibleErrorCode()
95 std::error_code FileError::convertToErrorCode() const { in convertToErrorCode()
96 std::error_code NestedEC = Err->convertToErrorCode(); in convertToErrorCode()
98 return std::error_code(static_cast<int>(ErrorErrorCode::FileError), in convertToErrorCode()
103 Error errorCodeToError(std::error_code EC) { in errorCodeToError()
109 std::error_code errorToErrorCode(Error Err) { in errorToErrorCode()
110 std::error_code EC; in errorToErrorCode()
132 StringError::StringError(std::error_code EC, const Twine &S) in StringError()
135 StringError::StringError(const Twine &S, std::error_code EC) in StringError()
148 std::error_code StringError::convertToErrorCode() const { in convertToErrorCode()
152 Error createStringError(std::error_code EC, char const *Msg) { in createStringError()