Home
last modified time | relevance | path

Searched refs:IgnoreAllWarnings (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/clang/include/clang/Basic/
DDiagnostic.h309 unsigned IgnoreAllWarnings : 1;
327 : IgnoreAllWarnings(false), EnableAllWarnings(false), in DiagState()
637 GetCurDiagState()->IgnoreAllWarnings = Val; in setIgnoreAllWarnings()
640 return GetCurDiagState()->IgnoreAllWarnings; in getIgnoreAllWarnings()
/external/clang/include/clang/Basic/
DDiagnostic.h172 bool IgnoreAllWarnings; // Ignore all warnings: -w variable
441 void setIgnoreAllWarnings(bool Val) { IgnoreAllWarnings = Val; } in setIgnoreAllWarnings()
442 bool getIgnoreAllWarnings() const { return IgnoreAllWarnings; } in getIgnoreAllWarnings()
/external/clang/lib/Basic/
DDiagnosticIDs.cpp449 if (Result == diag::Severity::Warning && Diag.IgnoreAllWarnings) in getDiagnosticSeverity()
DDiagnostic.cpp67 IgnoreAllWarnings = false; in DiagnosticsEngine()
/external/llvm-project/clang/lib/Basic/
DDiagnosticIDs.cpp552 if (State->IgnoreAllWarnings) { in getDiagnosticSeverity()
/external/llvm-project/clang/lib/Serialization/
DASTWriter.cpp2769 {(unsigned)DS->IgnoreAllWarnings, (unsigned)DS->EnableAllWarnings, in WritePragmaDiagnosticMappings()
DASTReader.cpp6272 Initial.IgnoreAllWarnings = Flags & 1; Flags >>= 1; in ReadPragmaDiagnosticMappings()