Searched refs:getError (Results 1 - 25 of 129) sorted by relevance

123456

/freebsd-current/contrib/llvm-project/clang/lib/Basic/
H A DFileSystemStatCache.cpp49 RetCode = StatusOrErr.getError();
65 RetCode = OwnedFile.getError();
78 RetCode = StatusOrErr.getError();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDataExtractor.h57 return getInitialLength(&getOffset(C), &getError(C));
67 return getRelocatedValue(Size, &getOffset(C), SectionIndex, &getError(C));
77 &getError(C));
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp513 if (std::error_code EC = Idx.getError())
523 if (std::error_code EC = Idx.getError())
533 if (std::error_code EC = ContextIdx.getError())
548 if (std::error_code EC = FContext.getError())
553 if (std::error_code EC = FName.getError())
574 if (std::error_code EC = NumSamples.getError())
580 if (std::error_code EC = NumRecords.getError())
585 if (std::error_code EC = LineOffset.getError())
593 if (std::error_code EC = Discriminator.getError())
597 if (std::error_code EC = NumSamples.getError())
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilHelpers.cpp21 if (auto ErrorCode = MaybeBuf.getError())
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp24 return MaybeFile.getError();
29 return MaybeStat.getError();
34 return MaybeBuffer.getError();
234 return Stat.getError();
236 getOrEmplaceSharedEntryForFilename(FilenameForLookup, Stat.getError());
252 TEntry.getError());
266 return WorkingDirForCacheLookup.getError();
282 return MaybeEntry.getError();
298 return Result.getError();
358 return Result.getError();
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h39 /// if (error_code ec = buffer.getError())
152 std::error_code getError() const { function in class:llvm::ErrorOr
178 new (getErrorStorage()) std::error_code(Other.getError());
210 new (getErrorStorage()) std::error_code(Other.getError());
266 return Err.getError() == Code;
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DYaml.h38 if (Buffer.getError()) {
/freebsd-current/contrib/llvm-project/lld/include/lld/Common/
H A DErrorHandler.h163 if (auto ec = e.getError())
183 if (auto ec = e.getError())
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp65 if (ModuleOrErr.getError()) {
114 if (ModuleOrErr.getError()) {
/freebsd-current/contrib/llvm-project/llvm/lib/IRReader/
H A DIRReader.cpp59 if (std::error_code EC = FileOrErr.getError()) {
99 if (std::error_code EC = FileOrErr.getError()) {
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DCaching.cpp61 EC = MBOrErr.getError();
106 MBOrErr.getError().message() + "\n");
H A DFileUtilities.cpp185 if (std::error_code EC = F1OrErr.getError()) {
193 if (std::error_code EC = F2OrErr.getError()) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp75 LLDB_LOG_ERROR(log, root.getError(),
87 LLDB_LOG_ERROR(log, root.getError(),
133 LLDB_LOG_ERROR(log, root.getError(),
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp149 exitWithErrorCode(OldSymbolBufOrError.getError(), OldSymbolFile);
153 exitWithErrorCode(NewSymbolBufOrError.getError(), NewSymbolFile);
157 exitWithErrorCode(RemappingBufOrError.getError(), RemappingFile);
/freebsd-current/contrib/llvm-project/llvm/lib/AsmParser/
H A DParser.cpp64 if (std::error_code EC = FileOrErr.getError()) {
107 if (std::error_code EC = FileOrErr.getError()) {
172 if (std::error_code EC = FileOrErr.getError()) {
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h105 std::error_code getError() const { return MaybeStat.getError(); } function in class:clang::tooling::dependencies::CachedFileSystemEntry
262 return Entry.getError();
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DAtomicChange.h83 const std::string &getError() const { return Error; } function in class:clang::tooling::AtomicChange
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DBinary.cpp111 if (std::error_code EC = FileOrErr.getError())
/freebsd-current/contrib/llvm-project/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp172 errs() << Path.getError().message() << "\n";
188 errs() << Path.getError().message() << "\n";
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cov/
H A Dgcov.cpp49 if (std::error_code EC = GCNO_Buff.getError()) {
62 if (std::error_code EC = GCDA_Buff.getError()) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h335 static BitstreamEntry getError() { function in struct:llvm::BitstreamEntry
420 return BitstreamEntry::getError();
430 return BitstreamEntry::getError();
/freebsd-current/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp100 if (std::error_code EC = MB.getError()) {
134 fatalOpenError(errorCodeToError(MaybeBuf.getError()), Arg->getValue());
450 fatalOpenError(errorCodeToError(MOrErr.getError()), Path);
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DModelUnderTrainingRunner.cpp42 BufferOrError.getError().message());
H A DReplayInlineAdvisor.cpp35 std::error_code EC = BufferOrErr.getError();
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DBlockExtractor.cpp69 if (ErrOrBuf.getError())

Completed in 158 milliseconds

123456