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 303 unsigned NumWarnings; ///< Number of warnings reported
586 unsigned getNumWarnings() const { return NumWarnings; }
588 void setNumWarnings(unsigned NumWarnings) {
589 this->NumWarnings = NumWarnings;
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 825 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings();
828 if (NumWarnings)
829 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s");
830 if (NumWarnings && NumErrors)
834 if (NumWarnings || NumErrors)
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 99 NumWarnings = 0;
343 ++NumWarnings;
391 ++NumWarnings;
    [all...]
DiagnosticIDs.cpp 690 ++Diag.NumWarnings;

Completed in 236 milliseconds