Lines Matching defs:GoogleStyle

1696     FormatStyle GoogleStyle = getGoogleStyle(FormatStyle::LK_Proto);
1697 GoogleStyle.Language = FormatStyle::LK_TextProto;
1699 return GoogleStyle;
1702 FormatStyle GoogleStyle = getLLVMStyle(Language);
1704 GoogleStyle.AccessModifierOffset = -1;
1705 GoogleStyle.AlignEscapedNewlines = FormatStyle::ENAS_Left;
1706 GoogleStyle.AllowShortIfStatementsOnASingleLine =
1708 GoogleStyle.AllowShortLoopsOnASingleLine = true;
1709 GoogleStyle.AlwaysBreakBeforeMultilineStrings = true;
1710 GoogleStyle.BreakTemplateDeclarations = FormatStyle::BTDS_Yes;
1711 GoogleStyle.DerivePointerAlignment = true;
1712 GoogleStyle.IncludeStyle.IncludeBlocks = tooling::IncludeStyle::IBS_Regroup;
1713 GoogleStyle.IncludeStyle.IncludeCategories = {{"^<ext/.*\\.h>", 2, 0, false},
1717 GoogleStyle.IncludeStyle.IncludeIsMainRegex = "([-_](test|unittest))?$";
1718 GoogleStyle.IndentCaseLabels = true;
1719 GoogleStyle.KeepEmptyLines.AtStartOfBlock = false;
1720 GoogleStyle.ObjCBinPackProtocolList = FormatStyle::BPS_Never;
1721 GoogleStyle.ObjCSpaceAfterProperty = false;
1722 GoogleStyle.ObjCSpaceBeforeProtocolList = true;
1723 GoogleStyle.PackConstructorInitializers = FormatStyle::PCIS_NextLine;
1724 GoogleStyle.PointerAlignment = FormatStyle::PAS_Left;
1725 GoogleStyle.RawStringFormats = {
1769 GoogleStyle.SpacesBeforeTrailingComments = 2;
1770 GoogleStyle.Standard = FormatStyle::LS_Auto;
1772 GoogleStyle.PenaltyBreakBeforeFirstCallParameter = 1;
1773 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
1776 GoogleStyle.AlignAfterOpenBracket = FormatStyle::BAS_DontAlign;
1777 GoogleStyle.AlignOperands = FormatStyle::OAS_DontAlign;
1778 GoogleStyle.AlignTrailingComments = {};
1779 GoogleStyle.AlignTrailingComments.Kind = FormatStyle::TCAS_Never;
1780 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
1781 GoogleStyle.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never;
1782 GoogleStyle.AlwaysBreakBeforeMultilineStrings = false;
1783 GoogleStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_NonAssignment;
1784 GoogleStyle.ColumnLimit = 100;
1785 GoogleStyle.SpaceAfterCStyleCast = true;
1786 GoogleStyle.SpacesBeforeTrailingComments = 1;
1788 GoogleStyle.AlignAfterOpenBracket = FormatStyle::BAS_AlwaysBreak;
1789 GoogleStyle.AlignOperands = FormatStyle::OAS_DontAlign;
1790 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
1792 GoogleStyle.AllowShortLambdasOnASingleLine = FormatStyle::SLS_Empty;
1793 GoogleStyle.AlwaysBreakBeforeMultilineStrings = false;
1794 GoogleStyle.BreakBeforeTernaryOperators = false;
1797 GoogleStyle.CommentPragmas = "(taze:|^/[ \t]*<|tslint:|@see)";
1800 // GoogleStyle.InsertTrailingCommas = FormatStyle::TCS_Wrapped;
1801 GoogleStyle.JavaScriptQuotes = FormatStyle::JSQS_Single;
1802 GoogleStyle.JavaScriptWrapImports = false;
1803 GoogleStyle.MaxEmptyLinesToKeep = 3;
1804 GoogleStyle.NamespaceIndentation = FormatStyle::NI_All;
1805 GoogleStyle.SpacesInContainerLiterals = false;
1807 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
1808 GoogleStyle.AlwaysBreakBeforeMultilineStrings = false;
1814 GoogleStyle.BreakStringLiterals = false;
1815 GoogleStyle.Cpp11BracedListStyle = false;
1816 GoogleStyle.SpacesInContainerLiterals = false;
1818 GoogleStyle.AlwaysBreakBeforeMultilineStrings = false;
1819 GoogleStyle.ColumnLimit = 100;
1823 GoogleStyle.IncludeStyle.IncludeBlocks =
1826 GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
1827 GoogleStyle.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never;
1828 GoogleStyle.BreakStringLiterals = false;
1829 GoogleStyle.ColumnLimit = 100;
1830 GoogleStyle.NamespaceIndentation = FormatStyle::NI_All;
1833 return GoogleStyle;