Lines Matching refs:PreviousCheck
192 const FormatToken *PreviousCheck = Tok->getPreviousNonComment(); in analyzeRight() local
193 while (isQualifier(PreviousCheck)) in analyzeRight()
194 PreviousCheck = PreviousCheck->getPreviousNonComment(); in analyzeRight()
197 const bool IsRightQualifier = PreviousCheck && [PreviousCheck]() { in analyzeRight()
204 if (PreviousCheck->is(tok::r_paren)) in analyzeRight()
210 if (PreviousCheck->is(tok::r_brace)) in analyzeRight()
231 if (PreviousCheck->is(TT_TemplateCloser)) { in analyzeRight()
234 return !(PreviousCheck->ClosesTemplateDeclaration || in analyzeRight()
235 PreviousCheck->ClosesRequiresClause); in analyzeRight()
242 if (PreviousCheck->isOneOf(TT_PointerOrReference, tok::identifier, in analyzeRight()
296 if (PreviousCheck && PreviousCheck->isTypeName(LangOpts)) { in analyzeRight()