Home
last modified time | relevance | path

Searched refs:startsSequence (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DQualifierAlignmentFixer.cpp338 Next->startsSequence(tok::coloncolon, tok::identifier) || in analyzeRight()
339 Next->startsSequence(tok::coloncolon, tok::kw_template, in analyzeRight()
344 } else if (Next->startsSequence(tok::coloncolon, tok::identifier)) { in analyzeRight()
H A DTokenAnnotator.h120 return First && First->startsSequence(Tokens...); in startsWith()
H A DTokenAnnotator.cpp88 if (!IsCpp || !Tok.startsSequence(tok::l_square, tok::l_square)) in isCppAttribute()
98 if (AttrTok->startsSequence(tok::kw_using, tok::identifier, tok::colon)) in isCppAttribute()
102 while (AttrTok && !AttrTok->startsSequence(tok::r_square, tok::r_square)) { in isCppAttribute()
107 AttrTok->startsSequence(tok::identifier, tok::identifier) || in isCppAttribute()
108 AttrTok->startsSequence(tok::r_paren, tok::identifier)) { in isCppAttribute()
115 return AttrTok && AttrTok->startsSequence(tok::r_square, tok::r_square); in isCppAttribute()
665 AttrTok->Next->startsSequence(tok::identifier, tok::l_paren)) { in isCSharpAttributeSpecifier()
1371 Line.First->startsSequence(tok::kw_export, Keywords.kw_module) || in consumeToken()
1372 Line.First->startsSequence(tok::kw_export, Keywords.kw_import)) { in consumeToken()
1684 (Tok->Next->startsSequence(tok::question, tok::r_paren) || in consumeToken()
[all …]
H A DContinuationIndenter.cpp398 Current.startsSequence(TT_SelectorName, tok::colon, tok::caret)) { in mustBreak()
462 !Current.startsSequence(TT_SelectorName, tok::colon, tok::caret))) { in mustBreak()
H A DFormatToken.h647 bool startsSequence(A K1, Ts... Tokens) const { in startsSequence() function