Home | History | Annotate | Download | only in Frontend

Lines Matching refs:DiagnosticLevelMask

1220                                      DiagnosticLevelMask &M) {
1223 DiagnosticLevelMask const PM =
1224 llvm::StringSwitch<DiagnosticLevelMask>(Level)
1225 .Case("note", DiagnosticLevelMask::Note)
1226 .Case("remark", DiagnosticLevelMask::Remark)
1227 DiagnosticLevelMask::Warning)
1228 .Case("error", DiagnosticLevelMask::Error)
1229 .Default(DiagnosticLevelMask::None);
1230 if (PM == DiagnosticLevelMask::None) {
2225 DiagnosticLevelMask VIU = Opts.getVerifyIgnoreUnexpected();
2226 if (VIU == DiagnosticLevelMask::None) {
2228 } else if (VIU == DiagnosticLevelMask::All) {
2231 if (static_cast<unsigned>(VIU & DiagnosticLevelMask::Note) != 0)
2233 if (static_cast<unsigned>(VIU & DiagnosticLevelMask::Remark) != 0)
2235 if (static_cast<unsigned>(VIU & DiagnosticLevelMask::Warning) != 0)
2237 if (static_cast<unsigned>(VIU & DiagnosticLevelMask::Error) != 0)
2305 DiagnosticLevelMask DiagMask = DiagnosticLevelMask::None;
2310 DiagMask = DiagnosticLevelMask::All;