Home
last modified time | relevance | path

Searched refs:MaxEmptyLinesToKeep (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/pam-krb5/
H A D.clang-format28 MaxEmptyLinesToKeep: 2
/freebsd/contrib/libucl/
H A D.clang-format43 MaxEmptyLinesToKeep: 2
/freebsd/contrib/libcbor/
H A D.clang-format83 MaxEmptyLinesToKeep: 1
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3508 unsigned MaxEmptyLinesToKeep; member
5428 MaxEmptyLinesToKeep == R.MaxEmptyLinesToKeep &&
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp1161 unsigned MaxEmptyLinesToKeep = Style.MaxEmptyLinesToKeep + 1; in addTokenOnNewLine() local
1169 MaxEmptyLinesToKeep = 1; in addTokenOnNewLine()
1172 std::max(1u, std::min(Current.NewlinesBefore, MaxEmptyLinesToKeep)); in addTokenOnNewLine()
H A DUnwrappedLineFormatter.cpp1525 std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1); in computeNewlines()
1636 Style.KeepEmptyLines.AtEndOfFile ? Style.MaxEmptyLinesToKeep + 1 : 1); in formatFirstToken()
H A DFormat.cpp1106 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep); in mapping()
1632 LLVMStyle.MaxEmptyLinesToKeep = 1; in getLLVMStyle()
1843 GoogleStyle.MaxEmptyLinesToKeep = 3; in getGoogleStyle()
H A DTokenAnnotator.cpp5600 if (Right.NewlinesBefore > 1 && Style.MaxEmptyLinesToKeep > 0 && in mustBreakBefore()