Lines Matching refs:AnnotationItr

494   for (auto AnnotationItr = AnnotationBeg; AnnotationItr != AnnotationEnd;  in FindInputLineInFilter()  local
495 ++AnnotationItr) { in FindInputLineInFilter()
501 return AnnotationItr->InputLine; in FindInputLineInFilter()
503 if (AnnotationItr->IsFirstLine) in FindInputLineInFilter()
504 return AnnotationItr->InputLine; in FindInputLineInFilter()
507 if (AnnotationItr->IsFirstLine && AnnotationItr->Marker.FiltersAsError) in FindInputLineInFilter()
508 return AnnotationItr->InputLine; in FindInputLineInFilter()
618 auto AnnotationItr = Annotations.begin(), AnnotationEnd = Annotations.end(); in DumpAnnotatedInput() local
620 InputFilePtr != InputFileEnd || AnnotationItr != AnnotationEnd; in DumpAnnotatedInput()
627 AnnotationItr, AnnotationEnd); in DumpAnnotatedInput()
657 for (auto I = AnnotationItr; I != AnnotationEnd && I->InputLine == Line; in DumpAnnotatedInput()
698 while (AnnotationItr != AnnotationEnd && in DumpAnnotatedInput()
699 AnnotationItr->InputLine == Line) { in DumpAnnotatedInput()
700 WithColor COS(*LineOS, AnnotationItr->Marker.Color, /*Bold=*/true, in DumpAnnotatedInput()
703 COS << left_justify(AnnotationItr->Label, LabelWidth) << " "; in DumpAnnotatedInput()
705 for (Col = 1; Col < AnnotationItr->InputStartCol; ++Col) in DumpAnnotatedInput()
707 COS << AnnotationItr->Marker.Lead; in DumpAnnotatedInput()
709 for (++Col; Col < AnnotationItr->InputEndCol && Col <= InputLineWidth; in DumpAnnotatedInput()
712 const std::string &Note = AnnotationItr->Marker.Note; in DumpAnnotatedInput()
723 ++AnnotationItr; in DumpAnnotatedInput()