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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DError.cpp21 FileError, member in class:__anon1979::ErrorErrorCode
40 case ErrorErrorCode::FileError:
59 char FileError::ID = 0;
82 std::error_code FileError::convertToErrorCode() const {
83 return std::error_code(static_cast<int>(ErrorErrorCode::FileError),
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h1221 class FileError final : public ErrorInfo<FileError> {
1245 FileError(const Twine &F, Optional<size_t> LineNum, function in class:llvm::final
1247 assert(E && "Cannot create FileError from Error success value.");
1249 "The file name provided to FileError must not be empty.");
1263 std::unique_ptr<FileError>(new FileError(F, Line, std::move(Payload))));
1274 return FileError::build(F, Optional<size_t>(), std::move(E));
1280 return FileError::build(F, Optional<size_t>(Line), std::move(E));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp288 std::error_code FileError; local
292 raw_fd_ostream FileOut(FileName, FileError);
293 if (FileError)
294 errs() << FileError.message();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp80 enum FileKind { FileError = 0, Basename, Dirname, Fullpath }; enumerator in enum:FileKind
572 case FileKind::FileError:

Completed in 81 milliseconds