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

References

tools/clang/lib/Format/ContinuationIndenter.cpp
 1087   if (Current.isOneOf(tok::comma, TT_BinaryOperator))
 1089   if (Current.is(TT_InheritanceColon))
 1091   if (Current.is(tok::lessless) && Current.isNot(TT_OverloadedOperator)) {
 1091   if (Current.is(tok::lessless) && Current.isNot(TT_OverloadedOperator)) {
 1097   if (Current.is(TT_BinaryOperator) && Current.isNot(tok::lessless))
 1097   if (Current.is(TT_BinaryOperator) && Current.isNot(tok::lessless))
 1099   if (Current.is(TT_ConditionalExpr) && Current.Previous &&
 1099   if (Current.is(TT_ConditionalExpr) && Current.Previous &&
 1100       !Current.Previous->is(TT_ConditionalExpr))
 1102   if (Current.is(TT_ArraySubscriptLSquare) &&
 1105   if (Style.BreakBeforeTernaryOperators && Current.is(tok::question))
 1107   if (!Style.BreakBeforeTernaryOperators && Current.isNot(tok::colon)) {
 1108     const FormatToken *Previous = Current.Previous;
 1114   if (!Current.opensScope() && !Current.closesScope() &&
 1114   if (!Current.opensScope() && !Current.closesScope() &&
 1115       !Current.is(TT_PointerOrReference))
 1117         std::min(State.LowestLevelOnLine, Current.NestingLevel);
 1118   if (Current.isMemberAccess())
 1120         !Current.NextOperator ? 0 : State.Column;
 1121   if (Current.is(TT_SelectorName))
 1123   if (Current.is(TT_CtorInitializerColon) &&
 1144   if (Current.is(TT_CtorInitializerColon) &&
 1152   if (Current.is(TT_InheritanceColon))
 1155   if (Current.isOneOf(TT_BinaryOperator, TT_ConditionalExpr) && Newline)
 1157         State.Column + Current.ColumnWidth + 1;
 1158   if (Current.isOneOf(TT_LambdaLSquare, TT_LambdaArrow))
 1162   const FormatToken *Previous = Current.getPreviousNonComment();
 1170   if (Current.isNot(tok::comment) && Previous &&
 1195   if (Current.is(TT_ObjCStringLiteral) && State.StartOfStringLiteral == 0)
 1197   if (Current.is(TT_CSharpStringLiteral) && State.StartOfStringLiteral == 0)
 1199   else if (Current.isStringLiteral() && State.StartOfStringLiteral == 0)
 1201   else if (!Current.isOneOf(tok::comment, tok::identifier, tok::hash) &&
 1202            !Current.isStringLiteral())
 1205   State.Column += Current.ColumnWidth;
 1209       handleEndOfLine(Current, State, DryRun, AllowBreak, Newline);
 1211   if (Current.Role)
 1212     Current.Role->formatFromToken(State, this, DryRun);