• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2Language:        Cpp
3AccessModifierOffset: -4
4AlignAfterOpenBracket: DontAlign
5AlignConsecutiveAssignments: false
6AlignConsecutiveDeclarations: false
7AlignEscapedNewlines: Left
8AlignOperands: true
9AlignTrailingComments: true
10AllowAllParametersOfDeclarationOnNextLine: false
11AllowShortBlocksOnASingleLine: false
12AllowShortCaseLabelsOnASingleLine: false
13AllowShortFunctionsOnASingleLine: Empty
14AllowShortIfStatementsOnASingleLine: Never
15AllowShortLoopsOnASingleLine: false
16AlwaysBreakAfterReturnType: None
17AlwaysBreakBeforeMultilineStrings: false
18AlwaysBreakTemplateDeclarations: Yes
19BinPackArguments: true
20BinPackParameters: true
21BreakBeforeBraces: Custom
22BraceWrapping:
23  AfterClass:      false
24  AfterControlStatement: false
25  AfterEnum:       false
26  AfterFunction:   true
27  AfterNamespace:  false
28  AfterObjCDeclaration: false
29  AfterStruct:     false
30  AfterUnion:      false
31  AfterExternBlock: false
32  BeforeCatch:     false
33  BeforeElse:      false
34  IndentBraces:    false
35  SplitEmptyFunction: false
36  SplitEmptyRecord: false
37  SplitEmptyNamespace: false
38BreakBeforeBinaryOperators: None
39BreakBeforeInheritanceComma: false
40BreakBeforeTernaryOperators: true
41BreakConstructorInitializers: BeforeColon
42BreakInheritanceList: BeforeColon
43BreakStringLiterals: true
44BreakAfterJavaFieldAnnotations: true
45ColumnLimit: 120
46CommentPragmas:  '^ IWYU pragma:'
47QualifierAlignment: Leave
48ReflowComments: true
49CompactNamespaces: false
50ConstructorInitializerAllOnOneLineOrOnePerLine: false
51ConstructorInitializerIndentWidth: 4
52ContinuationIndentWidth: 4
53Cpp11BracedListStyle: false
54DerivePointerAlignment: false
55DisableFormat:   false
56FixNamespaceComments: true
57ForEachMacros:
58  - foreach
59  - Q_FOREACH
60  - BOOST_FOREACH
61IncludeBlocks: Regroup
62IncludeCategories:
63  - Regex:           '^"(base|core|elements|rendering|adapter|dsl|frameworks|resource|accessibility|bridge)/'
64    Priority:        3
65  - Regex:           '<*>'
66    Priority:        1
67  - Regex:           '.*'
68    Priority:        2
69IndentCaseLabels: true
70IndentPPDirectives: None
71IndentWidth: 4
72IndentWrappedFunctionNames: false
73JavaScriptQuotes: Leave
74JavaScriptWrapImports: true
75KeepEmptyLinesAtTheStartOfBlocks: false
76MacroBlockBegin: ''
77MacroBlockEnd:   ''
78MaxEmptyLinesToKeep: 1
79NamespaceIndentation: None
80PenaltyBreakAssignment: 2
81PenaltyBreakBeforeFirstCallParameter: 39
82PenaltyBreakComment: 300
83PenaltyBreakFirstLessLess: 120
84PenaltyBreakString: 1000
85PenaltyExcessCharacter: 1000000
86PenaltyReturnTypeOnItsOwnLine: 80
87PointerAlignment: Left
88SortIncludes: true
89SortUsingDeclarations: true
90SpaceAfterCStyleCast: false
91SpaceAfterTemplateKeyword: false
92SpaceBeforeAssignmentOperators: true
93SpaceBeforeCpp11BracedList: true
94SpaceBeforeCtorInitializerColon: true
95SpaceBeforeParens: ControlStatements
96SpaceBeforeRangeBasedForLoopColon: true
97SpaceInEmptyParentheses: false
98SpacesBeforeTrailingComments: 1
99SpacesInAngles:  false
100SpacesInCStyleCastParentheses: false
101SpacesInContainerLiterals: true
102SpacesInParentheses: false
103SpacesInSquareBrackets: false
104Standard:        Cpp11
105TabWidth:        4
106UseTab:          Never
107...
108