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

  /external/clang/lib/Frontend/
CompilerInstance.cpp 687 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings();
690 if (NumWarnings)
691 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s");
692 if (NumWarnings && NumErrors)
696 if (NumWarnings || NumErrors)
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 292 unsigned NumWarnings; // Number of warnings reported
522 unsigned getNumWarnings() const { return NumWarnings; }
524 void setNumWarnings(unsigned NumWarnings) {
525 this->NumWarnings = NumWarnings;
    [all...]

Completed in 50 milliseconds