Home
last modified time | relevance | path

Searched refs:DiagnosticLevelMask (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DDiagnosticOptions.h39 enum class DiagnosticLevelMask : unsigned { enum
48 inline DiagnosticLevelMask operator~(DiagnosticLevelMask M) {
49 using UT = std::underlying_type<DiagnosticLevelMask>::type;
50 return static_cast<DiagnosticLevelMask>(~static_cast<UT>(M));
53 inline DiagnosticLevelMask operator|(DiagnosticLevelMask LHS,
54 DiagnosticLevelMask RHS) {
55 using UT = std::underlying_type<DiagnosticLevelMask>::type;
56 return static_cast<DiagnosticLevelMask>(
60 inline DiagnosticLevelMask operator&(DiagnosticLevelMask LHS,
62 using UT = std::underlying_type<DiagnosticLevelMask>::type;
[all …]
H A DDiagnosticOptions.def75 ENUM_DIAGOPT(VerifyIgnoreUnexpected, DiagnosticLevelMask, 4,
76 DiagnosticLevelMask::None) /// Ignore unexpected diagnostics of
/llvm-project-15.0.7/clang/lib/Basic/
H A DDiagnosticOptions.cpp19 raw_ostream &operator<<(raw_ostream &Out, DiagnosticLevelMask M) { in operator <<()
20 using UT = std::underlying_type<DiagnosticLevelMask>::type; in operator <<()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp993 const DiagnosticLevelMask DiagMask = in CheckResults()
999 bool(DiagnosticLevelMask::Error & DiagMask)); in CheckResults()
1004 bool(DiagnosticLevelMask::Warning & DiagMask)); in CheckResults()
1009 bool(DiagnosticLevelMask::Remark & DiagMask)); in CheckResults()
1014 bool(DiagnosticLevelMask::Note & DiagMask)); in CheckResults()
1106 const DiagnosticLevelMask DiagMask = in CheckDiagnostics()
1108 if (bool(DiagnosticLevelMask::Error & DiagMask)) in CheckDiagnostics()
1111 if (bool(DiagnosticLevelMask::Warning & DiagMask)) in CheckDiagnostics()
1114 if (bool(DiagnosticLevelMask::Remark & DiagMask)) in CheckDiagnostics()
1117 if (bool(DiagnosticLevelMask::Note & DiagMask)) in CheckDiagnostics()
H A DCompilerInvocation.cpp1236 DiagnosticLevelMask const PM = in parseDiagnosticLevelMask()
1237 llvm::StringSwitch<DiagnosticLevelMask>(Level) in parseDiagnosticLevelMask()
1238 .Case("note", DiagnosticLevelMask::Note) in parseDiagnosticLevelMask()
1239 .Case("remark", DiagnosticLevelMask::Remark) in parseDiagnosticLevelMask()
1241 .Case("error", DiagnosticLevelMask::Error) in parseDiagnosticLevelMask()
1242 .Default(DiagnosticLevelMask::None); in parseDiagnosticLevelMask()
1243 if (PM == DiagnosticLevelMask::None) { in parseDiagnosticLevelMask()
2305 if (VIU == DiagnosticLevelMask::None) { in GenerateDiagnosticArgs()
2307 } else if (VIU == DiagnosticLevelMask::All) { in GenerateDiagnosticArgs()
2397 DiagnosticLevelMask DiagMask = DiagnosticLevelMask::None; in ParseDiagnosticArgs()
[all …]