Lines Matching refs:Previous
437 const FormatToken *const Previous = Tok->getPreviousNonComment(); in analyzeLeft() local
438 if (!Previous) in analyzeLeft()
443 if (Tok->is(tok::identifier) && Previous->is(tok::coloncolon)) in analyzeLeft()
446 const FormatToken *const PrePrevious = Previous->getPreviousNonComment(); in analyzeLeft()
449 if (Tok->is(tok::identifier) && Previous->is(tok::kw_template) && in analyzeLeft()
492 const FormatToken *Previous = nullptr; in analyzeLeft() local
493 while ((Previous = TypeToken->getPreviousNonComment()) && in analyzeLeft()
494 (isConfiguredQualifier(Previous, ConfiguredQualifierTokens) || in analyzeLeft()
495 Previous->is(tok::kw_typename))) { in analyzeLeft()
498 TypeToken = Previous; in analyzeLeft()
503 if (!Previous || !Previous->isOneOf(tok::kw_struct, tok::kw_class)) { in analyzeLeft()