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

References

tools/clang/lib/Format/ContinuationIndenter.cpp
  598                  State.Stack.back().Indent);
  634     State.Stack.back().Indent = State.Column + Spaces;
  697     State.Stack.back().Indent = State.Column;
  711     State.Stack.back().Indent = State.Column;
  789                  ? std::max(State.Stack.back().Indent,
  791                  : State.Stack.back().Indent) +
  812           std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) +
  924       std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) +
  935                     State.Stack.back().Indent + Style.ContinuationIndentWidth);
  944                                      : State.Stack.back().Indent;
  983     return State.Stack.back().Indent;
 1011     return std::max(State.Stack.back().LastSpace, State.Stack.back().Indent);
 1014       unsigned MinIndent = State.Stack.back().Indent;
 1033       return State.Stack.back().Indent;
 1036     return State.Stack.back().Indent;
 1050     return State.Stack.back().Indent;
 1059     return State.Stack.back().Indent;
 1062     return State.Stack.back().Indent;
 1065     return State.Stack.back().Indent;
 1073     return State.Stack.back().Indent;
 1074   if (State.Stack.back().Indent == State.FirstIndent && PreviousNonComment &&
 1078     return State.Stack.back().Indent + Style.ContinuationIndentWidth;
 1079   return State.Stack.back().Indent;
 1130     State.Stack.back().Indent =
 1135     State.Stack.back().NestedBlockIndent = State.Stack.back().Indent;
 1146     State.Stack.back().Indent =
 1148     State.Stack.back().NestedBlockIndent = State.Stack.back().Indent;
 1153     State.Stack.back().Indent =
 1262       NewParenState.Indent =
 1263           std::max(std::max(State.Column, NewParenState.Indent),
 1285       NewParenState.Indent += Style.ContinuationIndentWidth;
 1354       NewIndent = std::max(NewIndent, State.Stack.back().Indent);
 1355       LastSpace = std::max(LastSpace, State.Stack.back().Indent);
 1566           : State.Stack.back().Indent;
tools/clang/lib/Format/ContinuationIndenter.h
  333     if (Indent != Other.Indent)
  333     if (Indent != Other.Indent)
  334       return Indent < Other.Indent;
  334       return Indent < Other.Indent;
tools/clang/lib/Format/UnwrappedLineFormatter.cpp
  718     llvm::dbgs() << (P.Tok ? P.Tok->TokenText : "F") << "|" << P.Indent << "|"
  773       int AdditionalIndent = State.Stack.back().Indent -