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

References

tools/clang/lib/Format/Format.cpp
 1073   Style.AlwaysBreakAfterDefinitionReturnType = FormatStyle::DRTBS_All;
 1074   Style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_AllDefinitions;
 1075   Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All;
 1076   Style.BreakBeforeBraces = FormatStyle::BS_GNU;
 1077   Style.BreakBeforeTernaryOperators = true;
 1078   Style.Cpp11BracedListStyle = false;
 1079   Style.ColumnLimit = 79;
 1080   Style.FixNamespaceComments = false;
 1081   Style.SpaceBeforeParens = FormatStyle::SBPO_Always;
 1082   Style.Standard = FormatStyle::LS_Cpp03;
 1083   return Style;