Home | History | Annotate | Download | only in Basic

Lines Matching refs:Ignored

320 /// which is set to indicate whether the diagnostic is ignored by default (in
374 // Specific non-error diagnostics may be mapped to various levels from ignored
388 Result = DiagnosticIDs::Ignored;
401 // Upgrade ignored diagnostics if -Weverything is enabled.
402 if (Diag.EnableAllWarnings && Result == DiagnosticIDs::Ignored &&
412 return DiagnosticIDs::Ignored;
421 // Upgrade ignored diagnostics to warnings.
422 if (Result == DiagnosticIDs::Ignored)
426 // Upgrade ignored or warning diagnostics to errors.
427 if (Result == DiagnosticIDs::Ignored || Result == DiagnosticIDs::Warning)
433 // At this point, ignored errors can no longer be upgraded.
434 if (Result == DiagnosticIDs::Ignored)
440 return DiagnosticIDs::Ignored;
467 return DiagnosticIDs::Ignored;
557 // Don't suggest ignored warning flags.
636 // a note and the last real diagnostic was ignored, ignore it too.
637 if (DiagLevel == DiagnosticIDs::Ignored ||
639 Diag.LastDiagLevel == DiagnosticIDs::Ignored))