HomeSort by relevance Sort by last modified time
    Searched refs:NumWarnings (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Basic/
Diagnostic.h 304 unsigned NumWarnings; ///< Number of warnings reported
587 unsigned getNumWarnings() const { return NumWarnings; }
589 void setNumWarnings(unsigned NumWarnings) {
590 this->NumWarnings = NumWarnings;
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 851 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings();
854 if (NumWarnings)
855 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s");
856 if (NumWarnings && NumErrors)
860 if (NumWarnings || NumErrors)
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 120 NumWarnings = 0;
356 ++NumWarnings;
404 ++NumWarnings;
    [all...]
DiagnosticIDs.cpp 682 ++Diag.NumWarnings;

Completed in 54 milliseconds