Lines Matching defs:First
71 const FormatToken *First) {
72 auto Range = CharSourceRange::getCharRange(First->getStartOfNonWhitespace(),
73 First->Tok.getEndLoc());
79 const FormatToken *First,
81 auto Range = CharSourceRange::getCharRange(First->Tok.getLocation(),
82 First->Tok.getEndLoc());
85 NewText += First->TokenText;
92 const FormatToken *First,
94 auto Range = CharSourceRange::getCharRange(First->getStartOfNonWhitespace(),
95 First->Tok.getEndLoc());
98 NewText += First->TokenText;
116 tooling::Replacements &Fixes, const FormatToken *First,
119 auto *Begin = First;
122 Begin = First->Next;
146 NewText += First->TokenText;
149 auto Range = CharSourceRange::getCharRange(First->getStartOfNonWhitespace(),
558 FormatToken *First = Line->First;
559 assert(First);
560 if (First->Finalized)
565 for (const auto *Tok = First; Tok && Tok != Last && Tok->Next;