[test] Add simple ssat testcase for pose decoder
[platform/upstream/nnstreamer.git] / .clang-format
1 AccessModifierOffset: 0
2 AlignAfterOpenBracket: DontAlign
3 AlignEscapedNewlinesLeft: true
4 AlignTrailingComments: false
5 AllowAllParametersOfDeclarationOnNextLine: false
6 AllowShortFunctionsOnASingleLine: false
7 AllowShortIfStatementsOnASingleLine: false
8 AllowShortLoopsOnASingleLine: false
9 AlwaysBreakAfterReturnType: TopLevelDefinitions
10 AlwaysBreakBeforeMultilineStrings: false
11 AlwaysBreakTemplateDeclarations: false
12 BinPackArguments: true
13 BinPackParameters: true
14 BreakBeforeBinaryOperators: true
15 BreakBeforeBraces: Linux
16 BreakBeforeTernaryOperators: false
17 BreakConstructorInitializersBeforeComma: false
18 BreakStringLiterals: false
19 ColumnLimit: 80
20 CommentPragmas: '\* @'
21 ConstructorInitializerAllOnOneLineOrOnePerLine: false
22 ConstructorInitializerIndentWidth: 4
23 ContinuationIndentWidth: 4
24 Cpp11BracedListStyle: false
25 DerivePointerBinding: false
26 IncludeCategories:
27   - Regex:      '.*gtest.*'
28     Priority:   -10
29   - Regex:      '".*"'
30     Priority:   10
31   - Regex:      '<.*>'
32     Priority:   0
33 IndentCaseLabels: true
34 IndentCaseBlocks: true
35 IndentFunctionDeclarationAfterType: true
36 IndentWidth: 2
37 IndentWrappedFunctionNames: false
38 Language: Cpp
39 MaxEmptyLinesToKeep: 2
40 NamespaceIndentation: None
41 ObjCSpaceAfterProperty: true
42 ObjCSpaceBeforeProtocolList: true
43 PenaltyBreakBeforeFirstCallParameter: 100
44 PenaltyBreakComment: 100
45 PenaltyBreakFirstLessLess: 0
46 PenaltyBreakString: 100
47 PenaltyExcessCharacter: 1
48 PenaltyReturnTypeOnItsOwnLine: 20
49 PointerBindsToType: false
50 SpaceAfterCStyleCast: true
51 SpaceBeforeAssignmentOperators: true
52 SpaceBeforeParens: Always
53 SpaceInEmptyParentheses: false
54 SpacesBeforeTrailingComments: 1
55 SpacesInAngles: false
56 SpacesInCStyleCastParentheses: false
57 SpacesInContainerLiterals: false
58 SpacesInParentheses: false
59 Standard: Cpp11
60 TabWidth: 4
61 UseTab: Never