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

References

tools/clang/include/clang/Format/Format.h
 2090            MaxEmptyLinesToKeep == R.MaxEmptyLinesToKeep &&
 2090            MaxEmptyLinesToKeep == R.MaxEmptyLinesToKeep &&
tools/clang/lib/Format/ContinuationIndenter.cpp
  832     unsigned MaxEmptyLinesToKeep = Style.MaxEmptyLinesToKeep + 1;
tools/clang/lib/Format/Format.cpp
  492     IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep);
  783   LLVMStyle.MaxEmptyLinesToKeep = 1;
  933     GoogleStyle.MaxEmptyLinesToKeep = 3;
tools/clang/lib/Format/TokenAnnotator.cpp
 2996   if (Right.NewlinesBefore > 1 && Style.MaxEmptyLinesToKeep > 0)
tools/clang/lib/Format/UnwrappedLineFormatter.cpp
 1190       std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
tools/clang/tools/extra/clangd/Format.cpp
  252     Style.MaxEmptyLinesToKeep = 1000;
tools/clang/unittests/Format/FormatTest.cpp
  375   Style.MaxEmptyLinesToKeep = 2;
 3567   DontAlign.MaxEmptyLinesToKeep = 3;
 9339   NoEmptyLines.MaxEmptyLinesToKeep = 0;
12490   CHECK_PARSE("MaxEmptyLinesToKeep: 1234", MaxEmptyLinesToKeep, 1234u);