HomeSort by: relevance | last modified time | path
    Searched refs:Errs (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl2/texinfo/dist/util/
deref.c 56 int Errs = 0;
86 Errs++;
89 return Errs != 0;
174 Errs++;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.cpp 39 Error Errs = Error::success();
40 llvm::erase_if(Symbols, [ToRemove, &Errs](const Symbol &Sym) {
43 Errs = joinErrors(std::move(Errs), ShouldRemove.takeError());
50 return Errs;
  /src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
ClangScanDeps.cpp 92 llvm::errs() << ErrorBuf.get()->getBuffer();
229 SharedStream &OS, SharedStream &Errs) {
232 MaybeFile.takeError(), [&Input, &Errs](llvm::StringError &Err) {
233 Errs.applyLocked([&](raw_ostream &OS) {
404 size_t InputIndex, SharedStream &OS, SharedStream &Errs) {
407 MaybeFullDeps.takeError(), [&Input, &Errs](llvm::StringError &Err) {
408 Errs.applyLocked([&](raw_ostream &OS) {
431 llvm::errs() << "error: " << ErrorMessage << "\n";
552 SharedStream Errs(llvm::errs());
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
CommandLine.cpp 175 StringRef Overview, raw_ostream *Errs = nullptr,
182 errs() << ProgramName << ": CommandLine Error: Option '" << Name
217 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
333 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
1297 StringRef Overview, raw_ostream *Errs,
1319 Errs, LongOptionsUseDoubleDash);
1334 raw_ostream *Errs,
1353 bool IgnoreErrors = Errs;
1354 if (!Errs)
1355 Errs = &errs()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 1055 logAllUnhandledErrors(ParseVarResult.takeError(), errs());
1107 logAllUnhandledErrors(ParseResult.takeError(), errs());
1253 Error Errs = Error::success();
1261 Errs = joinErrors(std::move(Errs),
1282 if (Errs)
1283 return std::move(Errs);
1865 logAllUnhandledErrors(std::move(DefineError), errs());
2018 errs() << "error: no check strings found with prefix"
2023 errs() << ", ";
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CommandLine.h 61 // stderr and exit if \p Errs is not set (nullptr by default), or print the
62 // error message to \p Errs and return false if \p Errs is provided.
73 raw_ostream *Errs = nullptr,
399 bool error(const Twine &Message, StringRef ArgName = StringRef(), raw_ostream &Errs = llvm::errs());
400 bool error(const Twine &Message, raw_ostream &Errs) {
401 return error(Message, StringRef(), Errs);

Completed in 21 milliseconds