reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Format/FormatToken.h
  331     return is(tok::kw_if) || endsSequence(tok::kw_constexpr, tok::kw_if) ||
  332            (endsSequence(tok::identifier, tok::kw_if) && AllowConstexprMacro);
tools/clang/lib/Format/TokenAnnotator.cpp
  202                 (Left->Previous->endsSequence(tok::identifier,
  533         if (!Left->endsSequence(tok::l_square, tok::numeric_constant,
  535             !Left->endsSequence(tok::l_square, tok::numeric_constant,
  537             !Left->endsSequence(tok::l_square, tok::colon, TT_SelectorName)) {
  629             CurrentToken->endsSequence(tok::colon, tok::identifier,
 2614                 LSquareTok.endsSequence(tok::l_square, tok::colon,
 2694   if (Left.is(tok::l_brace) && Left.endsSequence(TT_DictLiteral, tok::at))
 2698       Right.MatchingParen->endsSequence(TT_DictLiteral, tok::at))
 2802     if (Left.endsSequence(tok::kw_const, Keywords.kw_as)) {
tools/clang/lib/Format/TokenAnnotator.h
   95     return Last && Last->endsSequence(Tokens...);