Home
last modified time | relevance | path

Searched refs:NumWarnings (Results 1 – 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
HDDiagnostic.h497 unsigned NumWarnings; variable
858 unsigned getNumWarnings() const { return NumWarnings; } in getNumWarnings()
860 void setNumWarnings(unsigned NumWarnings) { in setNumWarnings() argument
861 this->NumWarnings = NumWarnings; in setNumWarnings()
1747 unsigned NumWarnings = 0; ///< Number of warnings reported
1755 unsigned getNumWarnings() const { return NumWarnings; } in getNumWarnings()
1756 virtual void clear() { NumWarnings = NumErrors = 0; } in clear()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
HDCompilerInstance.cpp1104 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings(); in printDiagnosticStats() local
1107 if (NumWarnings) in printDiagnosticStats()
1108 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s"); in printDiagnosticStats()
1109 if (NumWarnings && NumErrors) in printDiagnosticStats()
1113 if (NumWarnings || NumErrors) { in printDiagnosticStats()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
HDDiagnostic.cpp124 NumWarnings = 0; in Reset()
521 ++NumWarnings; in Report()
567 ++NumWarnings; in HandleDiagnostic()
HDDiagnosticIDs.cpp839 ++Diag.NumWarnings; in EmitDiag()