Lines Matching refs:error_code
74 std::error_code ErrorList::convertToErrorCode() const { in convertToErrorCode()
75 return std::error_code(static_cast<int>(ErrorErrorCode::MultipleErrors), in convertToErrorCode()
79 std::error_code inconvertibleErrorCode() { in inconvertibleErrorCode()
80 return std::error_code(static_cast<int>(ErrorErrorCode::InconvertibleError), in inconvertibleErrorCode()
84 std::error_code FileError::convertToErrorCode() const { in convertToErrorCode()
85 std::error_code NestedEC = Err->convertToErrorCode(); in convertToErrorCode()
87 return std::error_code(static_cast<int>(ErrorErrorCode::FileError), in convertToErrorCode()
92 Error errorCodeToError(std::error_code EC) { in errorCodeToError()
98 std::error_code errorToErrorCode(Error Err) { in errorToErrorCode()
99 std::error_code EC; in errorToErrorCode()
121 StringError::StringError(std::error_code EC, const Twine &S) in StringError()
124 StringError::StringError(const Twine &S, std::error_code EC) in StringError()
137 std::error_code StringError::convertToErrorCode() const { in convertToErrorCode()
141 Error createStringError(std::error_code EC, char const *Msg) { in createStringError()