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
583 unsigned getNumWarnings() const { return NumWarnings; }
585 void setNumWarnings(unsigned NumWarnings) {
586 this->NumWarnings = NumWarnings;
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 698 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings();
701 if (NumWarnings)
702 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s");
703 if (NumWarnings && NumErrors)
707 if (NumWarnings || NumErrors)
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 104 NumWarnings = 0;
384 ++NumWarnings;
432 ++NumWarnings;
    [all...]
DiagnosticIDs.cpp 694 ++Diag.NumWarnings;

Completed in 35 milliseconds