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

References

tools/clang/lib/Format/ContinuationIndenter.cpp
 1307   const FormatToken &Current = *State.NextToken;
 1312     moveStateToNewBlock(State);
 1317   unsigned LastSpace = State.Stack.back().LastSpace;
 1320   unsigned NestedBlockIndent = std::max(State.Stack.back().StartOfFunctionCall,
 1321                                         State.Stack.back().NestedBlockIndent);
 1326                   std::min(State.Column, State.Stack.back().NestedBlockIndent);
 1326                   std::min(State.Column, State.Stack.back().NestedBlockIndent);
 1328       NewIndent = State.Stack.back().LastSpace + Style.ContinuationIndentWidth;
 1343       NestedBlockIndent = std::max(NestedBlockIndent, State.Column + 1);
 1346                 std::max(State.Stack.back().LastSpace,
 1347                          State.Stack.back().StartOfFunctionCall);
 1354       NewIndent = std::max(NewIndent, State.Stack.back().Indent);
 1355       LastSpace = std::max(LastSpace, State.Stack.back().Indent);
 1371         (State.Line->Type != LT_ObjCDecl && Style.BinPackParameters) ||
 1372         (State.Line->Type == LT_ObjCDecl && ObjCBinPackProtocolList);
 1376         (State.Line->MustBeDeclaration && !BinPackDeclaration) ||
 1377         (!State.Line->MustBeDeclaration && !Style.BinPackArguments) ||
 1387         if (getLengthToMatchingParen(Current, State.Stack) + State.Column >
 1387         if (getLengthToMatchingParen(Current, State.Stack) + State.Column >
 1388             getColumnLimit(State))
 1413       (State.Stack.back().NoLineBreak ||
 1414        State.Stack.back().NoLineBreakInOperand ||
 1416         State.Stack.back().ContainsUnwrappedBuilder));
 1417   State.Stack.push_back(
 1419   State.Stack.back().NestedBlockIndent = NestedBlockIndent;
 1420   State.Stack.back().BreakBeforeParameter = BreakBeforeParameter;
 1421   State.Stack.back().HasMultipleNestedBlocks = Current.BlockParameterCount > 1;
 1422   State.Stack.back().IsInsideObjCArrayLiteral =