Searched refs:Errs (Results 1 – 7 of 7) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/ObjCopy/COFF/ |
H A D | COFFObject.cpp | 39 Error Errs = Error::success(); in removeSymbols() local 40 llvm::erase_if(Symbols, [ToRemove, &Errs](const Symbol &Sym) { in removeSymbols() 43 Errs = joinErrors(std::move(Errs), ShouldRemove.takeError()); in removeSymbols() 50 return Errs; in removeSymbols()
|
/openbsd/gnu/usr.bin/texinfo/util/ |
H A D | deref.c | 54 int Errs = 0; variable 84 Errs++; in main() 87 return Errs != 0; in main() 172 Errs++; in repair()
|
/openbsd/gnu/llvm/clang/tools/clang-scan-deps/ |
H A D | ClangScanDeps.cpp | 229 SharedStream &OS, SharedStream &Errs) { in handleMakeDependencyToolResult() argument 232 MaybeFile.takeError(), [&Input, &Errs](llvm::StringError &Err) { in handleMakeDependencyToolResult() 233 Errs.applyLocked([&](raw_ostream &OS) { in handleMakeDependencyToolResult() 400 size_t InputIndex, SharedStream &OS, SharedStream &Errs) { in handleFullDependencyToolResult() argument 404 Errs.applyLocked([&](raw_ostream &OS) { in handleFullDependencyToolResult() 486 P1689Deps &PD, SharedStream &Errs) { in handleP1689DependencyToolResult() argument 489 MaybeRule.takeError(), [&Input, &Errs](llvm::StringError &Err) { in handleP1689DependencyToolResult() 490 Errs.applyLocked([&](raw_ostream &OS) { in handleP1689DependencyToolResult() 710 SharedStream Errs(llvm::errs()); in main() local 736 &DependencyOS, &Errs]() { in main() [all …]
|
/openbsd/gnu/llvm/clang/tools/clang-repl/ |
H A D | ClangRepl.cpp | 55 unsigned Errs = CI->getDiagnostics().getClient()->getNumErrors(); in checkDiagErrors() local 61 Errs = Client->getNumErrors(); in checkDiagErrors() 66 return (Errs || HasError) ? EXIT_FAILURE : EXIT_SUCCESS; in checkDiagErrors()
|
/openbsd/gnu/llvm/llvm/lib/Support/ |
H A D | CommandLine.cpp | 1494 raw_ostream *Errs, in ParseCommandLineOptions() argument 1499 bool IgnoreErrors = Errs; in ParseCommandLineOptions() 1500 if (!Errs) in ParseCommandLineOptions() 1501 Errs = &errs(); in ParseCommandLineOptions() 1514 *Errs << toString(std::move(Err)) << '\n'; in ParseCommandLineOptions() 1584 *Errs << PositionalOpts.size(); in ParseCommandLineOptions() 1690 *Errs << ProgramName << ": Did you mean '" in ParseCommandLineOptions() 1708 "the next recognized option.", *Errs); in ParseCommandLineOptions() 1719 *Errs << ProgramName in ParseCommandLineOptions() 1841 Errs << HelpStr; // Be nice for positional arguments in error() [all …]
|
/openbsd/gnu/llvm/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 1266 Errs = joinErrors(std::move(Errs), in match() 1287 if (Errs) in match() 1288 return std::move(Errs); in match() 2692 Errs = joinErrors( in defineCmdlineVariables() 2693 std::move(Errs), in defineCmdlineVariables() 2710 Errs = joinErrors(std::move(Errs), ExpressionResult.takeError()); in defineCmdlineVariables() 2720 Errs = joinErrors(std::move(Errs), Value.takeError()); in defineCmdlineVariables() 2738 Errs = joinErrors(std::move(Errs), ParseVarResult.takeError()); in defineCmdlineVariables() 2745 Errs = joinErrors(std::move(Errs), in defineCmdlineVariables() 2758 Errs = joinErrors(std::move(Errs), in defineCmdlineVariables() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 71 raw_ostream *Errs = nullptr, 396 …bool error(const Twine &Message, StringRef ArgName = StringRef(), raw_ostream &Errs = llvm::errs()… 397 bool error(const Twine &Message, raw_ostream &Errs) { in error() argument 398 return error(Message, StringRef(), Errs); in error()
|