Home | History | Annotate | Download | only in Basic

Lines Matching defs:Info

173     DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag);
174 if (Info.getSeverity() == diag::Severity::Error ||
175 Info.getSeverity() == diag::Severity::Fatal)
176 Map = Info.getSeverity();
261 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
263 if (Info.getSeverity() == diag::Severity::Error ||
264 Info.getSeverity() == diag::Severity::Fatal)
265 Info.setSeverity(diag::Severity::Warning);
267 Info.setNoWarningAsError(true);
292 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(GroupDiags[i]);
294 if (Info.getSeverity() == diag::Severity::Fatal)
295 Info.setSeverity(diag::Severity::Error);
297 Info.setNoErrorAsFatal(true);
339 Diagnostic Info(this, storedDiag.getMessage());
340 Client->HandleDiagnostic(DiagLevel, Info);
354 Diagnostic Info(this);
358 = Diags->getDiagnosticLevel(Info.getID(), Info.getLocation(), *this);
386 const Diagnostic &Info) {
850 // Create a struct with all the info needed for printing.
918 // Remember this argument info for subsequent formatting operations. Turn
942 const Diagnostic &Info)
943 : ID(Info.getID()), Level(Level)
945 assert((Info.getLocation().isInvalid() || Info.hasSourceManager()) &&
947 if (Info.getLocation().isValid())
948 Loc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
950 Info.FormatDiagnostic(Message);
952 this->Ranges.assign(Info.getRanges().begin(), Info.getRanges().end());
953 this->FixIts.assign(Info.getFixItHints().begin(), Info.getFixItHints().end());
979 const Diagnostic &Info) {
980 Target.HandleDiagnostic(DiagLevel, Info);