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 639 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings();
642 if (NumWarnings)
643 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s");
644 if (NumWarnings && NumErrors)
648 if (NumWarnings || NumErrors)
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 269 unsigned NumWarnings; // Number of warnings reported
473 unsigned getNumWarnings() const { return NumWarnings; }
475 void setNumWarnings(unsigned NumWarnings) {
476 this->NumWarnings = NumWarnings;
    [all...]

Completed in 95 milliseconds