OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
821
unsigned
NumWarnings
= getDiagnostics().getClient()->getNumWarnings();
824
if (
NumWarnings
)
825
OS <<
NumWarnings
<< " warning" << (
NumWarnings
== 1 ? "" : "s");
826
if (
NumWarnings
&& NumErrors)
830
if (
NumWarnings
|| NumErrors)
[
all
...]
/external/clang/lib/Basic/
Diagnostic.cpp
102
NumWarnings
= 0;
341
++
NumWarnings
;
389
++
NumWarnings
;
[
all
...]
DiagnosticIDs.cpp
664
++Diag.
NumWarnings
;
Completed in 289 milliseconds