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

References

tools/clang/lib/Format/Format.cpp
 1088   Style.ColumnLimit = 120;
 1089   Style.TabWidth = 4;
 1090   Style.IndentWidth = 4;
 1091   Style.UseTab = FormatStyle::UT_Never;
 1092   Style.BreakBeforeBraces = FormatStyle::BS_Custom;
 1093   Style.BraceWrapping.AfterClass = true;
 1094   Style.BraceWrapping.AfterControlStatement = FormatStyle::BWACS_Always;
 1095   Style.BraceWrapping.AfterEnum = true;
 1096   Style.BraceWrapping.AfterFunction = true;
 1097   Style.BraceWrapping.AfterNamespace = true;
 1098   Style.BraceWrapping.AfterObjCDeclaration = true;
 1099   Style.BraceWrapping.AfterStruct = true;
 1100   Style.BraceWrapping.AfterExternBlock = true;
 1101   Style.BraceWrapping.BeforeCatch = true;
 1102   Style.BraceWrapping.BeforeElse = true;
 1103   Style.PenaltyReturnTypeOnItsOwnLine = 1000;
 1104   Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None;
 1105   Style.AllowShortCaseLabelsOnASingleLine = false;
 1106   Style.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never;
 1107   Style.AllowShortLoopsOnASingleLine = false;
 1108   Style.AlwaysBreakAfterDefinitionReturnType = FormatStyle::DRTBS_None;
 1109   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None;
 1110   return Style;