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

References

tools/clang/lib/Format/TokenAnnotator.cpp
  455         Style.isCpp() && Parent && Parent->is(TT_TemplateCloser) &&
  455         Style.isCpp() && Parent && Parent->is(TT_TemplateCloser) &&
  474         (!Parent ||
  475          Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
  477          Parent->isUnaryOperator() ||
  479          Parent->isOneOf(TT_ObjCForIn, TT_CastRParen) ||
  480          (getBinOpPrecedence(Parent->Tok.getKind(), true, true) >
  492       } else if (Style.Language == FormatStyle::LK_JavaScript && Parent &&
  494                  Parent->isOneOf(tok::l_brace, tok::comma)) {
  497                  Parent && Parent->isOneOf(tok::l_brace, tok::comma)) {
  497                  Parent && Parent->isOneOf(tok::l_brace, tok::comma)) {
  501       } else if (CurrentToken->is(tok::r_square) && Parent &&
  502                  Parent->is(TT_TemplateCloser)) {
  541       } else if (!CppArrayTemplates && Parent &&
  542                  Parent->isOneOf(TT_BinaryOperator, TT_TemplateCloser, tok::at,
  556     if (Style.Language == FormatStyle::LK_JavaScript && Parent &&
  557         Parent->is(TT_JsTypeColon))
  593           if (Parent && Parent->is(TT_PointerOrReference))
  593           if (Parent && Parent->is(TT_PointerOrReference))
  594             Parent->Type = TT_BinaryOperator;
  639           if (Parent && Parent->is(tok::r_paren))
  639           if (Parent && Parent->is(tok::r_paren))
  641             Parent->Type = TT_CastRParen;