Lines Matching defs:GoogleStyle

546   FormatStyle GoogleStyle = getLLVMStyle();
547 GoogleStyle.Language = Language;
549 GoogleStyle.AccessModifierOffset = -1;
550 GoogleStyle.AlignEscapedNewlinesLeft = true;
551 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
552 GoogleStyle.AllowShortLoopsOnASingleLine = true;
553 GoogleStyle.AlwaysBreakBeforeMultilineStrings = true;
554 GoogleStyle.AlwaysBreakTemplateDeclarations = true;
555 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
556 GoogleStyle.DerivePointerAlignment = true;
557 GoogleStyle.IncludeCategories = {{"^<.*\\.h>", 1}, {"^<.*", 2}, {".*", 3}};
558 GoogleStyle.IndentCaseLabels = true;
559 GoogleStyle.KeepEmptyLinesAtTheStartOfBlocks = false;
560 GoogleStyle.ObjCSpaceAfterProperty = false;
561 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
562 GoogleStyle.PointerAlignment = FormatStyle::PAS_Left;
563 GoogleStyle.SpacesBeforeTrailingComments = 2;
564 GoogleStyle.Standard = FormatStyle::LS_Auto;
566 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
567 GoogleStyle.PenaltyBreakBeforeFirstCallParameter = 1;
570 GoogleStyle.AlignAfterOpenBracket = FormatStyle::BAS_DontAlign;
571 GoogleStyle.AlignOperands = false;
572 GoogleStyle.AlignTrailingComments = false;
573 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
574 GoogleStyle.AllowShortIfStatementsOnASingleLine = false;
575 GoogleStyle.AlwaysBreakBeforeMultilineStrings = false;
576 GoogleStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_NonAssignment;
577 GoogleStyle.ColumnLimit = 100;
578 GoogleStyle.SpaceAfterCStyleCast = true;
579 GoogleStyle.SpacesBeforeTrailingComments = 1;
581 GoogleStyle.AlignAfterOpenBracket = FormatStyle::BAS_AlwaysBreak;
582 GoogleStyle.AlignOperands = false;
583 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
584 GoogleStyle.AlwaysBreakBeforeMultilineStrings = false;
585 GoogleStyle.BreakBeforeTernaryOperators = false;
586 GoogleStyle.CommentPragmas = "@(export|visibility) {";
587 GoogleStyle.MaxEmptyLinesToKeep = 3;
588 GoogleStyle.SpacesInContainerLiterals = false;
590 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None;
591 GoogleStyle.SpacesInContainerLiterals = false;
594 return GoogleStyle;