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
585 unsigned getNumWarnings() const { return NumWarnings; }
587 void setNumWarnings(unsigned NumWarnings) {
588 this->NumWarnings = NumWarnings;
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 712 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings();
715 if (NumWarnings)
716 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s");
717 if (NumWarnings && NumErrors)
721 if (NumWarnings || NumErrors)
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 104 NumWarnings = 0;
384 ++NumWarnings;
432 ++NumWarnings;
    [all...]
DiagnosticIDs.cpp 690 ++Diag.NumWarnings;

Completed in 107 milliseconds