Home
last modified time | relevance | path

Searched refs:AllowShortFunctionsOnASingleLine (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Format/
H A DFormat.h243 ShortFunctionStyle AllowShortFunctionsOnASingleLine; member
1728 AllowShortFunctionsOnASingleLine ==
1729 R.AllowShortFunctionsOnASingleLine &&
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp246 Style.AllowShortFunctionsOnASingleLine == FormatStyle::SFS_All || in tryFitMultipleLinesInOne()
247 (Style.AllowShortFunctionsOnASingleLine >= FormatStyle::SFS_Empty && in tryFitMultipleLinesInOne()
249 (Style.AllowShortFunctionsOnASingleLine & FormatStyle::SFS_InlineOnly && in tryFitMultipleLinesInOne()
351 (Style.AllowShortFunctionsOnASingleLine >= FormatStyle::SFS_Empty && in tryFitMultipleLinesInOne()
H A DFormat.cpp331 Style.AllowShortFunctionsOnASingleLine); in mapping()
633 LLVMStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All; in getLLVMStyle()
804 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty; in getGoogleStyle()
814 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty; in getGoogleStyle()
826 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty; in getGoogleStyle()
870 ChromiumStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline; in getChromiumStyle()
884 MozillaStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline; in getMozillaStyle()
H A DTokenAnnotator.cpp2869 return Style.AllowShortFunctionsOnASingleLine == FormatStyle::SFS_None || in mustBreakBefore()
2870 Style.AllowShortFunctionsOnASingleLine == FormatStyle::SFS_Empty || in mustBreakBefore()
2872 Style.AllowShortFunctionsOnASingleLine & in mustBreakBefore()
H A DContinuationIndenter.cpp377 (Style.AllowShortFunctionsOnASingleLine != FormatStyle::SFS_All || in mustBreak()