Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DError.cpp22 FileError, enumerator
41 case ErrorErrorCode::FileError: in message()
63 char FileError::ID = 0;
103 std::error_code FileError::convertToErrorCode() const { in convertToErrorCode()
106 return std::error_code(static_cast<int>(ErrorErrorCode::FileError), in convertToErrorCode()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h1323 class FileError final : public ErrorInfo<FileError> {
1354 FileError(const Twine &F, std::optional<size_t> LineNum, in FileError() function
1370 std::unique_ptr<FileError>(new FileError(F, Line, std::move(Payload)))); in build()
1381 return FileError::build(F, std::optional<size_t>(), std::move(E)); in createFileError()
1387 return FileError::build(F, std::optional<size_t>(Line), std::move(E)); in createFileError()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp287 std::error_code FileError; in runOnMachineFunction() local
291 raw_fd_ostream FileOut(FileName, FileError); in runOnMachineFunction()
292 if (FileError) in runOnMachineFunction()
293 errs() << FileError.message(); in runOnMachineFunction()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp86 enum FileKind { FileError = 0, Basename, Dirname, Fullpath }; enumerator
561 case FileKind::FileError: in DumpFile()