Searched refs:Err (Results 151 - 175 of 249) sorted by relevance

12345678910

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp182 Error Err = Error::success(); local
183 for (const Archive::Child &Child : Ar.children(Err)) {
205 if (Err)
206 return createFileError(Config.InputFilename, std::move(Err));
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp253 bool Err; local
255 Err = Linker::linkModules(
263 Err = Linker::linkModules(*getModule(), std::move(LM.Module),
267 if (Err)
1078 llvm::SMDiagnostic Err; local
1079 if (std::unique_ptr<llvm::Module> M = parseIR(MBRef, Err, *VMContext))
1086 if (Err.getLineNo() > 0) {
1087 assert(Err.getColumnNo() >= 0);
1089 Err.getLineNo(), Err
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h272 operator==(const ErrorOr<T> &Err, E Code) { argument
273 return Err.getError() == Code;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDKernelCodeTInfo.h44 [](amd_kernel_code_t &C, MCAsmParser &MCParser, raw_ostream &Err) { \
46 if (!expectAbsExpression(MCParser, Value, Err)) \
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendAction.cpp409 if (std::error_code Err = collectModuleHeaderIncludes(
411 return Err;
519 std::error_code Err = std::error_code(); local
523 Err = collectModuleHeaderIncludes(
528 if (Err) {
530 << M->getFullModuleName() << Err.message();
945 if (llvm::Error Err = GlobalModuleIndex::writeIndex(
950 consumeError(std::move(Err));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculation.h120 if (auto Err = Result.takeError())
121 ES.reportError(std::move(Err));
H A DOrcRemoteTargetServer.h266 if (auto Err =
268 return std::move(Err);
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
385 return std::move(Err);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileUtilities.cpp310 if (llvm::Error Err = Writer(OS)) {
311 return Err;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h342 if (llvm::Error Err = Cursor.JumpToBit(Offset))
345 toString(std::move(Err)));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp1751 static const char *resyncUTF8(const char *Err, const char *End) {
1752 if (Err == End)
1754 End = Err + std::min<unsigned>(llvm::getNumBytesForUTF8(*Err), End-Err);
1755 while (++Err != End && (*Err & 0xC0) == 0x80)
1757 return Err;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp83 if (Error Err = issueInstruction(IR))
84 return Err;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DObjectFile.cpp184 if (Error Err = ObjOrErr.takeError())
185 return std::move(Err);
H A DModuleSymbolTable.cpp77 std::string Err;
79 const Target *T = TargetRegistry::lookupTarget(TT.str(), Err);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1307 Error Err = Error::success(); local
1308 for (const llvm::object::ExportEntry &Entry : MachO->exports(Err)) {
1448 if (Err)
1449 error(std::move(Err), MachO->getFileName());
1820 Error Err = Error::success(); local
1821 for (auto &C : A->children(Err)) {
1848 if (Err)
1849 error(std::move(Err), A->getFileName());
1891 Error Err = Error::success(); local
1892 for (auto &C : A->children(Err)) {
1962 Error Err = Error::success(); local
2027 Error Err = Error::success(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h68 CoverageMapError(coveragemap_error Err) : Err(Err) { argument
69 assert(Err != coveragemap_error::success && "Not an error");
77 return make_error_code(Err);
80 coveragemap_error get() const { return Err; }
85 coveragemap_error Err; member in class:llvm::coverage::CoverageMapError
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp840 auto Err = commandLineParser(argc, argv); local
841 if (Err)
842 return Err;
973 auto Err = commandLineParser(argc, argv); local
974 if (Err)
975 return Err;
1020 auto Err = commandLineParser(argc, argv); local
1021 if (Err)
1022 return Err;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp523 llvm::Error Err = ReplaceChange.replace(
525 if (Err) {
527 << llvm::toString(std::move(Err)) << "\n";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DSortJavaScriptImports.cpp192 auto Err = Result.add(tooling::Replacement( variable
197 if (Err) {
198 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp360 llvm::Error Err = Result.add(tooling::Replacement(
362 if (Err) {
364 llvm::toString(std::move(Err));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp172 std::string Err; local
173 raw_string_ostream Stream(Err);
175 report_fatal_error(Err);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h38 std::error_code errorToErrorCodeAndEmitErrors(LLVMContext &Ctx, Error Err);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp318 if (llvm::Error Err = Forward.ImportDefinition(SourceTag))
319 llvm::consumeError(std::move(Err));
338 if (llvm::Error Err = Forward.ImportDefinition(SourceInterface))
339 llvm::consumeError(std::move(Err));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/
H A DInstrBuilder.cpp574 if (Error Err = verifyOperands(MCDesc, MCI))
575 return std::move(Err);
584 if (Error Err = verifyInstrDesc(*ID, MCI))
585 return std::move(Err);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachOUniversal.h139 MachOUniversalBinary(MemoryBufferRef Souce, Error &Err);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp299 Error Err = Error::success(); local
300 for (auto N : Obj->notes(P, Err))
555 if (auto Err = loadDataForEXE(PDB_ReaderType::DIA,
559 return createFileError(PDBFileName, std::move(Err));

Completed in 307 milliseconds

12345678910