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

References

tools/clang/include/clang/Format/Format.h
 2068            ContinuationIndentWidth == R.ContinuationIndentWidth &&
 2068            ContinuationIndentWidth == R.ContinuationIndentWidth &&
tools/clang/lib/Format/BreakableToken.cpp
  564     return Style.ContinuationIndentWidth;
tools/clang/lib/Format/ContinuationIndenter.cpp
  419       (NewLineColumn == State.FirstIndent + Style.ContinuationIndentWidth ||
  597         std::max(State.FirstIndent + Style.ContinuationIndentWidth,
  790                             State.FirstIndent + Style.ContinuationIndentWidth)
  813           Style.ContinuationIndentWidth;
  925       Style.ContinuationIndentWidth;
  935                     State.Stack.back().Indent + Style.ContinuationIndentWidth);
 1017                              State.FirstIndent + Style.ContinuationIndentWidth);
 1078     return State.Stack.back().Indent + Style.ContinuationIndentWidth;
 1285       NewParenState.Indent += Style.ContinuationIndentWidth;
 1328       NewIndent = State.Stack.back().LastSpace + Style.ContinuationIndentWidth;
 1345     NewIndent = Style.ContinuationIndentWidth +
tools/clang/lib/Format/Format.cpp
  468     IO.mapOptional("ContinuationIndentWidth", Style.ContinuationIndentWidth);
  761   LLVMStyle.ContinuationIndentWidth = 4;
  989     ChromiumStyle.ContinuationIndentWidth = 8;
 1036   MozillaStyle.ContinuationIndentWidth = 2;
tools/clang/unittests/Format/FormatTest.cpp
 9715   EightIndent.ContinuationIndentWidth = 8;
12502   CHECK_PARSE("ContinuationIndentWidth: 11", ContinuationIndentWidth, 11u);
13999   TwoIndent.ContinuationIndentWidth = 2;
14007   SixIndent.ContinuationIndentWidth = 6;
tools/clang/unittests/Format/FormatTestObjC.cpp
  942   Style.ContinuationIndentWidth = 8;