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

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp 257 unsigned NumErrors = 0;
269 ++NumErrors;
274 return NumErrors;
281 unsigned NumErrors = 0;
283 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrev());
285 NumErrors += verifyAbbrevSection(DCtx.getDebugAbbrevDWO());
287 return NumErrors == 0;
357 unsigned NumErrors = 0;
361 NumErrors += verifyUnitSection(S, DW_SECT_INFO);
366 NumErrors += verifyUnitSection(S, DW_SECT_EXT_TYPES)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Diagnostic.h 494 unsigned NumErrors;
847 unsigned getNumErrors() const { return NumErrors; }
1069 unsigned NumErrors;
1079 return Diag.TrapNumErrorsOccurred > NumErrors;
1090 NumErrors = Diag.TrapNumErrorsOccurred;
1710 unsigned NumErrors = 0; ///< Number of errors reported
1716 unsigned getNumErrors() const { return NumErrors; }
1718 virtual void clear() { NumWarnings = NumErrors = 0; }
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 1102 ++NumErrors;
1107 NumErrors += CheckResults(Diags, *SrcManager, *Buffer, ED);
1112 NumErrors += PrintUnexpected(Diags, nullptr, Buffer->err_begin(),
1115 NumErrors += PrintUnexpected(Diags, nullptr, Buffer->warn_begin(),
1118 NumErrors += PrintUnexpected(Diags, nullptr, Buffer->remark_begin(),
1121 NumErrors += PrintUnexpected(Diags, nullptr, Buffer->note_begin(),
CompilerInstance.cpp 980 unsigned NumErrors = getDiagnostics().getClient()->getNumErrors();
984 if (NumWarnings && NumErrors)
986 if (NumErrors)
987 OS << NumErrors << " error" << (NumErrors == 1 ? "" : "s");
988 if (NumWarnings || NumErrors) {
  /src/external/apache2/llvm/dist/clang/lib/Basic/
DiagnosticIDs.cpp 756 ++Diag.NumErrors;
779 ++Diag.NumErrors;
784 if (Diag.ErrorLimit && Diag.NumErrors > Diag.ErrorLimit &&
Diagnostic.cpp 140 NumErrors = 0;
555 ++NumErrors;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 387 unsigned NumErrors = 0;
390 ++NumErrors;
394 if (NumErrors == Inputs.size() ||
395 (NumErrors > 0 && FailMode == failIfAnyAreInvalid))
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 3657 unsigned NumErrors = Diags->getClient()->getNumErrors();
3685 if (NumErrors != Diags->getClient()->getNumErrors()) {

Completed in 80 milliseconds