Home
last modified time | relevance | path

Searched refs:FileError (Results 1 – 5 of 5) 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/pkgconf/doc/
H A Dextract.py36 class FileError(Exception): class
140 raise FileError(str(exception))
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h1342 class LLVM_ABI FileError final : public ErrorInfo<FileError> {
1373 FileError(const Twine &F, std::optional<size_t> LineNum, in FileError() function
1389 std::unique_ptr<FileError>(new FileError(F, Line, std::move(Payload)))); in build()
1400 return FileError::build(F, std::optional<size_t>(), std::move(E)); in createFileError()
1406 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.cpp286 std::error_code FileError; in runOnMachineFunction() local
290 raw_fd_ostream FileOut(FileName, FileError); in runOnMachineFunction()
291 if (FileError) in runOnMachineFunction()
292 errs() << FileError.message(); in runOnMachineFunction()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp87 enum FileKind { FileError = 0, Basename, Dirname, Fullpath }; enumerator
618 case FileKind::FileError: in DumpFile()