Home | History | Annotate | Download | only in Lex

Lines Matching refs:PrevTok

141 /// AvoidConcat - If printing PrevTok immediately followed by Tok would cause
153 const Token &PrevTok,
158 if (PrevTok.getLocation().isFileID() && Tok.getLocation().isFileID() &&
159 PrevTok.getLocation().getLocWithOffset(PrevTok.getLength()) ==
163 tok::TokenKind PrevKind = PrevTok.getKind();
164 if (PrevTok.getIdentifierInfo()) // Language keyword or named operator.
167 // Look up information on when we should avoid concatenation with prevtok.
170 // If prevtok never causes a problem for anything after it, return quickly.
218 if (!PrevTok.hasUDSuffix())
238 return IsIdentifierStringPrefix(PrevTok);