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

References

tools/clang/lib/Format/ContinuationIndenter.cpp
  921   const FormatToken &Previous = *Current.Previous;
  926   const FormatToken *PreviousNonComment = Current.getPreviousNonComment();
  929     NextNonComment = &Current;
  933       Current.isOneOf(Keywords.kw_implements, Keywords.kw_extends))
  943     return Current.NestingLevel == 0 ? State.FirstIndent
  945   if ((Current.isOneOf(tok::r_brace, tok::r_square) ||
  946        (Current.is(tok::greater) &&
  950     if (Current.closesBlockOrBlockTypeList(Style))
  952     if (Current.MatchingParen &&
  953         Current.MatchingParen->BlockKind == BK_BracedInit)
  972   if (Current.is(tok::r_paren) && State.Stack.size() > 1 &&
  973       (!Current.Next ||
  974        Current.Next->isOneOf(tok::semi, tok::kw_const, tok::l_brace)))
  978   if (Current.is(tok::identifier) && Current.Next &&
  978   if (Current.is(tok::identifier) && Current.Next &&
  979       (Current.Next->is(TT_DictLiteral) ||
  982         Current.Next->isOneOf(tok::less, tok::l_brace))))
 1069   if (Previous.is(tok::r_paren) && !Current.isBinaryOperator() &&
 1070       !Current.isOneOf(tok::colon, tok::comment))
 1072   if (Current.is(TT_ProtoExtensionLSquare))