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

12345678910

/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.h169 LLParser(StringRef F, SourceMgr &SM, SMDiagnostic &Err, Module *M, argument
173 : Context(Context), Lex(F, SM, Err, Context), M(M), Index(Index),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp263 auto Err = !NestingStack.empty(); local
269 return Err;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp232 else if (auto Err = Sym.takeError())
233 ExitOnErr(std::move(Err));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp496 SMDiagnostic Err = SMDiagnostic(Mod.getModuleIdentifier(),
498 Err.print("llvm-lto", errs());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp463 std::string Err;
464 if (!Re.isValid(Err)) {
466 " is not valid: " + Err);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1191 if (llvm::Error Err =
1197 llvm::consumeError(std::move(Err));
1231 if (llvm::Error Err =
1236 llvm::consumeError(std::move(Err));
H A DVirtualFileSystem.cpp324 if (auto Err = llvm::sys::fs::is_directory(Absolute, IsDir))
325 return Err;
328 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved))
329 return Err;
H A DAPFloat.cpp211 static inline Error createError(const Twine &Err) { argument
212 return make_error<StringError>(Err, inconvertibleErrorCode());
2509 if (Error Err = interpretDecimal(p, str.end(), &D))
2510 return std::move(Err);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2233 Error Err = Error::success();
2235 for (auto &C : A->children(Err)) {
2251 if (Err)
2252 reportError(std::move(Err), A->getFileName());
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp4635 if (auto Err = isTrivialOperatorNode(Dst))
4637 toString(std::move(Err)) + ")");
4638 if (auto Err = isTrivialOperatorNode(Src))
4640 toString(std::move(Err)) + ")");
5123 if (auto Err = MatcherOrErr.takeError()) {
5126 "Skipped pattern: " + toString(std::move(Err)));
5128 consumeError(std::move(Err));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp1740 StringRef Err; local
1742 if (!llvm::AArch64::parseBranchProtection(A->getValue(), PBP, Err))
1744 << Err << A->getAsString(Args);
2246 auto Err = llvm::sys::fs::create_directory(Path, /*IgnoreExisting=*/true); local
2247 if (Err) {
2248 Driver.Diag(diag::err_drv_compilationdatabase) << Dir << Err.message();
2257 Err = llvm::sys::fs::createUniqueFile(Path, FD, TempPath);
2258 if (Err) {
2259 Driver.Diag(diag::err_drv_compilationdatabase) << Path << Err.message();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp1621 auto Err = Whitespaces.addReplacement(tooling::Replacement( local
1624 if (Err) {
1626 << llvm::toString(std::move(Err)) << "\n";
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp1769 const int Err = 13; local
1770 uptr err = ucontext->uc_mcontext.gregs[Err];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1571 SMDiagnostic Err; local
1572 C = parseConstantValue(Source, Err, *PFS.MF.getFunction().getParent(),
1575 return ErrCB(Loc + Err.getColumnNo(), Err.getMessage());
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp2166 static bool reportDiag(const Twine &Err, DiagnosticsEngine &Diag) { argument
2168 << Err.str();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp224 if (llvm::Error Err = m_process_launch_info.SetUpPtyRedirection())
225 return Status(std::move(Err));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h1435 void Error(llvm::Error &&Err) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp2804 bool Err = ParseObjectList(nullptr); local
2806 if (Err)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3137 llvm::Error Err = info.SetUpPtyRedirection(); local
3138 LLDB_LOG_ERROR(log, std::move(Err), "SetUpPtyRedirection failed: {0}");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp1739 int Err = -1; // No error local
1744 Err = 0;
1748 Err = 1;
1751 if (-1 != Err) {
1752 S.Diag(AL.getLoc(), diag::err_ownership_type) << AL << Err
H A DSemaDeclCXX.cpp755 auto &&Err = Diag(BadSpecifierLocs.front(), diag::err_decomp_decl_spec); local
756 Err << (int)BadSpecifiers.size()
761 Err << SourceRange(Loc, Loc);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4048 raw_svector_ostream Err(ErrStr);
4049 if (!parseAmdKernelCodeField(ID, getParser(), Header, Err)) {
4050 return TokError(Err.str());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp3735 auto Fail = [](const char *what, llvm::Error &&Err) {
3737 ": " + toString(std::move(Err)));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp4395 std::string Err; local
4397 const Target *T = TargetRegistry::lookupTarget(TT.str(), Err);

Completed in 534 milliseconds

12345678910