Home
last modified time | relevance | path

Searched refs:FileError (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DError.cpp20 FileError, enumerator
39 case ErrorErrorCode::FileError: in message()
61 char FileError::ID = 0;
84 std::error_code FileError::convertToErrorCode() const { in convertToErrorCode()
87 return std::error_code(static_cast<int>(ErrorErrorCode::FileError), in convertToErrorCode()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DError.h1263 class FileError final : public ErrorInfo<FileError> {
1294 FileError(const Twine &F, Optional<size_t> LineNum, in FileError() function
1310 std::unique_ptr<FileError>(new FileError(F, Line, std::move(Payload)))); in build()
1321 return FileError::build(F, Optional<size_t>(), std::move(E)); in createFileError()
1327 return FileError::build(F, Optional<size_t>(Line), std::move(E)); in createFileError()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp288 std::error_code FileError; in runOnMachineFunction() local
292 raw_fd_ostream FileOut(FileName, FileError); in runOnMachineFunction()
293 if (FileError) in runOnMachineFunction()
294 errs() << FileError.message(); in runOnMachineFunction()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DErrorTest.cpp942 handleAllErrors(std::move(FE2), [](const FileError &F) { in TEST()
948 auto E31 = handleErrors(std::move(FE3), [](std::unique_ptr<FileError> F) { in TEST()
965 handleAllErrors(std::move(FE6), [](std::unique_ptr<FileError> F) { in TEST()
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A DDwarfLinkerForBinary.cpp207 std::unique_ptr<FileError> FE) { in remarksErrorHandler()
287 std::move(E), [&](std::unique_ptr<FileError> EC) -> Error { in loadObject()
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp85 enum FileKind { FileError = 0, Basename, Dirname, Fullpath }; enumerator
567 case FileKind::FileError: in DumpFile()