Home | History | Annotate | Download | only in Basic

Lines Matching defs:DiagLevel

590   DiagnosticIDs::Level DiagLevel
593 if (DiagLevel != DiagnosticIDs::Note) {
601 Diag.LastDiagLevel = DiagLevel;
605 if (DiagLevel >= DiagnosticIDs::Error) {
614 if (DiagLevel >= DiagnosticIDs::Error &&
625 if (DiagLevel == DiagnosticIDs::Ignored ||
626 (DiagLevel == DiagnosticIDs::Note &&
630 if (DiagLevel >= DiagnosticIDs::Error) {
646 DiagLevel == DiagnosticIDs::Error) {
653 EmitDiag(Diag, DiagLevel);
657 void DiagnosticIDs::EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const {
659 assert(DiagLevel != DiagnosticIDs::Ignored && "Cannot emit ignored diagnostics!");
661 Diag.Client->HandleDiagnostic((DiagnosticsEngine::Level)DiagLevel, Info);
663 if (DiagLevel == DiagnosticIDs::Warning)