Lines Matching defs:GoogleStyle

235   FormatStyle GoogleStyle;
236 GoogleStyle.AccessModifierOffset = -1;
237 GoogleStyle.AlignEscapedNewlinesLeft = true;
238 GoogleStyle.AlignTrailingComments = true;
239 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
240 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
241 GoogleStyle.AllowShortLoopsOnASingleLine = true;
242 GoogleStyle.AlwaysBreakBeforeMultilineStrings = true;
243 GoogleStyle.AlwaysBreakTemplateDeclarations = true;
244 GoogleStyle.BinPackParameters = true;
245 GoogleStyle.BreakBeforeBinaryOperators = false;
246 GoogleStyle.BreakBeforeTernaryOperators = true;
247 GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
248 GoogleStyle.BreakConstructorInitializersBeforeComma = false;
249 GoogleStyle.ColumnLimit = 80;
250 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
251 GoogleStyle.ConstructorInitializerIndentWidth = 4;
252 GoogleStyle.Cpp11BracedListStyle = true;
253 GoogleStyle.DerivePointerBinding = true;
254 GoogleStyle.ExperimentalAutoDetectBinPacking = false;
255 GoogleStyle.IndentCaseLabels = true;
256 GoogleStyle.IndentFunctionDeclarationAfterType = true;
257 GoogleStyle.IndentWidth = 2;
258 GoogleStyle.TabWidth = 8;
259 GoogleStyle.MaxEmptyLinesToKeep = 1;
260 GoogleStyle.NamespaceIndentation = FormatStyle::NI_None;
261 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
262 GoogleStyle.PointerBindsToType = true;
263 GoogleStyle.SpacesBeforeTrailingComments = 2;
264 GoogleStyle.Standard = FormatStyle::LS_Auto;
265 GoogleStyle.UseTab = FormatStyle::UT_Never;
266 GoogleStyle.SpacesInParentheses = false;
267 GoogleStyle.SpaceInEmptyParentheses = false;
268 GoogleStyle.SpacesInCStyleCastParentheses = false;
269 GoogleStyle.SpaceAfterControlStatementKeyword = true;
270 GoogleStyle.SpaceBeforeAssignmentOperators = true;
271 GoogleStyle.ContinuationIndentWidth = 4;
272 GoogleStyle.SpacesInAngles = false;
274 setDefaultPenalties(GoogleStyle);
275 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
276 GoogleStyle.PenaltyBreakBeforeFirstCallParameter = 1;
278 return GoogleStyle;