measur-tools-suite 1.0.11-beta.25 → 1.0.11-beta.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.clang-format ADDED
@@ -0,0 +1,320 @@
1
+ ---
2
+ Language: Cpp
3
+ # BasedOnStyle: Google
4
+ # AccessModifierOffset: -1
5
+ AlignAfterOpenBracket: Align
6
+ # AlignArrayOfStructures: None
7
+ # AlignConsecutiveAssignments:
8
+ # Enabled: false
9
+ # AcrossEmptyLines: false
10
+ # AcrossComments: false
11
+ # AlignCompound: false
12
+ # AlignFunctionPointers: false
13
+ # PadOperators: true
14
+ # AlignConsecutiveBitFields:
15
+ # Enabled: false
16
+ # AcrossEmptyLines: false
17
+ # AcrossComments: false
18
+ # AlignCompound: false
19
+ # AlignFunctionPointers: false
20
+ # PadOperators: false
21
+ # AlignConsecutiveDeclarations:
22
+ # Enabled: false
23
+ # AcrossEmptyLines: false
24
+ # AcrossComments: false
25
+ # AlignCompound: false
26
+ # AlignFunctionPointers: false
27
+ # PadOperators: false
28
+ AlignConsecutiveMacros:
29
+ Enabled: true
30
+ # AcrossEmptyLines: false
31
+ # AcrossComments: false
32
+ # AlignCompound: false
33
+ # AlignFunctionPointers: false
34
+ # PadOperators: false
35
+ # AlignConsecutiveShortCaseStatements:
36
+ # Enabled: false
37
+ # AcrossEmptyLines: false
38
+ # AcrossComments: false
39
+ # AlignCaseArrows: false
40
+ # AlignCaseColons: false
41
+ # AlignConsecutiveTableGenBreakingDAGArgColons:
42
+ # Enabled: false
43
+ # AcrossEmptyLines: false
44
+ # AcrossComments: false
45
+ # AlignCompound: false
46
+ # AlignFunctionPointers: false
47
+ # PadOperators: false
48
+ # AlignConsecutiveTableGenCondOperatorColons:
49
+ # Enabled: false
50
+ # AcrossEmptyLines: false
51
+ # AcrossComments: false
52
+ # AlignCompound: false
53
+ # AlignFunctionPointers: false
54
+ # PadOperators: false
55
+ # AlignConsecutiveTableGenDefinitionColons:
56
+ # Enabled: false
57
+ # AcrossEmptyLines: false
58
+ # AcrossComments: false
59
+ # AlignCompound: false
60
+ # AlignFunctionPointers: false
61
+ # PadOperators: false
62
+ # AlignEscapedNewlines: Left
63
+ AlignOperands: Align
64
+ AlignTrailingComments:
65
+ Kind: Always
66
+ OverEmptyLines: 0
67
+ # AllowAllArgumentsOnNextLine: true
68
+ # AllowAllParametersOfDeclarationOnNextLine: true
69
+ # AllowBreakBeforeNoexceptSpecifier: Never
70
+ # AllowShortBlocksOnASingleLine: Always
71
+ # AllowShortCaseExpressionOnASingleLine: true
72
+ # AllowShortCaseLabelsOnASingleLine: false
73
+ # AllowShortCompoundRequirementOnASingleLine: true
74
+ # AllowShortEnumsOnASingleLine: true
75
+ # AllowShortFunctionsOnASingleLine: All
76
+ # AllowShortIfStatementsOnASingleLine: WithoutElse
77
+ # AllowShortLambdasOnASingleLine: All
78
+ # AllowShortLoopsOnASingleLine: true
79
+ # AlwaysBreakAfterDefinitionReturnType: None
80
+ # AlwaysBreakBeforeMultilineStrings: true
81
+ # AttributeMacros:
82
+ # - __capability
83
+ BinPackArguments: true
84
+ BinPackParameters: true
85
+ # BitFieldColonSpacing: Both
86
+ BraceWrapping:
87
+ # AfterCaseLabel: false
88
+ # AfterClass: false
89
+ # AfterControlStatement: Never
90
+ # AfterEnum: false
91
+ # AfterFunction: false
92
+ # AfterNamespace: false
93
+ # AfterObjCDeclaration: false
94
+ # AfterStruct: false
95
+ # AfterUnion: false
96
+ # AfterExternBlock: false
97
+ # BeforeCatch: false
98
+ BeforeElse: true
99
+ # BeforeLambdaBody: false
100
+ # BeforeWhile: false
101
+ # IndentBraces: false
102
+ # SplitEmptyFunction: true
103
+ # SplitEmptyRecord: true
104
+ # SplitEmptyNamespace: true
105
+ # BreakAdjacentStringLiterals: true
106
+ # BreakAfterAttributes: Leave
107
+ # BreakAfterJavaFieldAnnotations: false
108
+ # BreakAfterReturnType: None
109
+ # BreakArrays: true
110
+ # BreakBeforeBinaryOperators: None
111
+ BreakBeforeBraces: Custom
112
+ # BreakBeforeConceptDeclarations: Always
113
+ # BreakBeforeInlineASMColon: OnlyMultiline
114
+ # BreakBeforeTernaryOperators: true
115
+ BreakConstructorInitializers: BeforeColon
116
+ # BreakFunctionDefinitionParameters: false
117
+ # BreakInheritanceList: BeforeColon
118
+ # BreakStringLiterals: true
119
+ # BreakTemplateDeclarations: Yes
120
+ ColumnLimit: 120
121
+ # CommentPragmas: "^ IWYU pragma:"
122
+ CompactNamespaces: false
123
+ # ConstructorInitializerIndentWidth: 4
124
+ ContinuationIndentWidth: 4
125
+ Cpp11BracedListStyle: true
126
+ # DerivePointerAlignment: true
127
+ # DisableFormat: false
128
+ # EmptyLineAfterAccessModifier: Never
129
+ # EmptyLineBeforeAccessModifier: LogicalBlock
130
+ # ExperimentalAutoDetectBinPacking: false
131
+ FixNamespaceComments: true
132
+ # ForEachMacros:
133
+ # - foreach
134
+ # - Q_FOREACH
135
+ # - BOOST_FOREACH
136
+ # IfMacros:
137
+ # - KJ_IF_MAYBE
138
+ IncludeBlocks: Regroup
139
+ IncludeCategories:
140
+ - Regex: '^"[^"]+\.h"' # Project-local includes, e.g. "myheader.h"
141
+ Priority: 1
142
+ SortPriority: 0
143
+ CaseSensitive: false
144
+ - Regex: '^<[^/ >]+>$' # C++ standard library headers, e.g. <vector>, <string>
145
+ Priority: 2
146
+ SortPriority: 0
147
+ CaseSensitive: false
148
+ - Regex: '^<.*>$' # System or external library headers, e.g. <boost/asio.hpp>, <QtCore/QObject>
149
+ Priority: 3
150
+ SortPriority: 0
151
+ CaseSensitive: false
152
+ # - Regex: ^<ext/.*\.h>
153
+ # Priority: 2
154
+ # SortPriority: 0
155
+ # CaseSensitive: false
156
+ # - Regex: ^<.*\.h>
157
+ # Priority: 1
158
+ # SortPriority: 0
159
+ # CaseSensitive: false
160
+ # - Regex: ^<.*
161
+ # Priority: 2
162
+ # SortPriority: 0
163
+ # CaseSensitive: false
164
+ # - Regex: .*
165
+ # Priority: 3
166
+ # SortPriority: 0
167
+ # CaseSensitive: false
168
+ # IncludeIsMainRegex: ([-_](test|unittest))?$
169
+ # IncludeIsMainSourceRegex: ""
170
+ # IndentAccessModifiers: false
171
+ # IndentCaseBlocks: false
172
+ IndentCaseLabels: true
173
+ # IndentExternBlock: AfterExternBlock
174
+ # IndentGotoLabels: true
175
+ IndentPPDirectives: BeforeHash
176
+ # IndentRequiresClause: true
177
+ IndentWidth: 4
178
+ # IndentWrappedFunctionNames: false
179
+ # InsertBraces: false
180
+ # InsertNewlineAtEOF: false
181
+ # InsertTrailingCommas: None
182
+ # IntegerLiteralSeparator:
183
+ # Binary: 0
184
+ # BinaryMinDigits: 0
185
+ # Decimal: 0
186
+ # DecimalMinDigits: 0
187
+ # Hex: 0
188
+ # HexMinDigits: 0
189
+ # JavaScriptQuotes: Leave
190
+ # JavaScriptWrapImports: true
191
+ # KeepEmptyLines:
192
+ # AtEndOfFile: false
193
+ # AtStartOfBlock: false
194
+ # AtStartOfFile: true
195
+ # LambdaBodyIndentation: Signature
196
+ # LineEnding: DeriveLF
197
+ # MacroBlockBegin: ""
198
+ # MacroBlockEnd: ""
199
+ # MainIncludeChar: Quote
200
+ # MaxEmptyLinesToKeep: 1
201
+ # NamespaceIndentation: None
202
+ # ObjCBinPackProtocolList: Never
203
+ # ObjCBlockIndentWidth: 2
204
+ # ObjCBreakBeforeNestedBlockParam: true
205
+ # ObjCSpaceAfterProperty: false
206
+ # ObjCSpaceBeforeProtocolList: true
207
+ # PPIndentWidth: -1
208
+ # PackConstructorInitializers: NextLine
209
+ # PenaltyBreakAssignment: 2
210
+ # PenaltyBreakBeforeFirstCallParameter: 1
211
+ # PenaltyBreakComment: 300
212
+ # PenaltyBreakFirstLessLess: 120
213
+ # PenaltyBreakOpenParenthesis: 0
214
+ # PenaltyBreakScopeResolution: 500
215
+ # PenaltyBreakString: 1000
216
+ # PenaltyBreakTemplateDeclaration: 10
217
+ # PenaltyExcessCharacter: 1000000
218
+ # PenaltyIndentedWhitespace: 0
219
+ # PenaltyReturnTypeOnItsOwnLine: 200
220
+ PointerAlignment: Left
221
+ # QualifierAlignment: Leave
222
+ # RawStringFormats:
223
+ # - Language: Cpp
224
+ # Delimiters:
225
+ # - cc
226
+ # - CC
227
+ # - cpp
228
+ # - Cpp
229
+ # - CPP
230
+ # - c++
231
+ # - C++
232
+ # CanonicalDelimiter: ""
233
+ # BasedOnStyle: google
234
+ # - Language: TextProto
235
+ # Delimiters:
236
+ # - pb
237
+ # - PB
238
+ # - proto
239
+ # - PROTO
240
+ # EnclosingFunctions:
241
+ # - EqualsProto
242
+ # - EquivToProto
243
+ # - PARSE_PARTIAL_TEXT_PROTO
244
+ # - PARSE_TEST_PROTO
245
+ # - PARSE_TEXT_PROTO
246
+ # - ParseTextOrDie
247
+ # - ParseTextProtoOrDie
248
+ # - ParseTestProto
249
+ # - ParsePartialTestProto
250
+ # CanonicalDelimiter: pb
251
+ # BasedOnStyle: google
252
+ # ReferenceAlignment: Pointer
253
+ ReflowComments: true
254
+ # RemoveBracesLLVM: false
255
+ # RemoveParentheses: Leave
256
+ # RemoveSemicolon: false
257
+ # RequiresClausePosition: OwnLine
258
+ # RequiresExpressionIndentation: OuterScope
259
+ # SeparateDefinitionBlocks: Leave
260
+ # ShortNamespaceLines: 1
261
+ # SkipMacroDefinitionBody: false
262
+ SortIncludes: CaseInsensitive
263
+ # SortJavaStaticImport: Before
264
+ # SortUsingDeclarations: LexicographicNumeric
265
+ # SpaceAfterCStyleCast: false
266
+ # SpaceAfterLogicalNot: false
267
+ # SpaceAfterTemplateKeyword: true
268
+ # SpaceAroundPointerQualifiers: Default
269
+ SpaceBeforeAssignmentOperators: true
270
+ # SpaceBeforeCaseColon: false
271
+ SpaceBeforeCpp11BracedList: true
272
+ # SpaceBeforeCtorInitializerColon: true
273
+ SpaceBeforeInheritanceColon: true
274
+ # SpaceBeforeJsonColon: false
275
+ SpaceBeforeParens: ControlStatements
276
+ # SpaceBeforeParensOptions:
277
+ # AfterControlStatements: true
278
+ # AfterForeachMacros: true
279
+ # AfterFunctionDeclarationName: false
280
+ # AfterFunctionDefinitionName: false
281
+ # AfterIfMacros: true
282
+ # AfterOverloadedOperator: false
283
+ # AfterPlacementOperator: true
284
+ # AfterRequiresInClause: false
285
+ # AfterRequiresInExpression: false
286
+ # BeforeNonEmptyParentheses: false
287
+ # SpaceBeforeRangeBasedForLoopColon: true
288
+ # SpaceBeforeSquareBrackets: false
289
+ # SpaceInEmptyBlock: false
290
+ # SpacesBeforeTrailingComments: 2
291
+ # SpacesInAngles: Never
292
+ # SpacesInContainerLiterals: true
293
+ # SpacesInLineCommentPrefix:
294
+ # Minimum: 1
295
+ # Maximum: -1
296
+ # SpacesInParens: Never
297
+ # SpacesInParensOptions:
298
+ # ExceptDoubleParentheses: false
299
+ # InConditionalStatements: false
300
+ # InCStyleCasts: false
301
+ # InEmptyParentheses: false
302
+ # Other: false
303
+ # SpacesInSquareBrackets: false
304
+ # Standard: Auto
305
+ # StatementAttributeLikeMacros:
306
+ # - Q_EMIT
307
+ # StatementMacros:
308
+ # - Q_UNUSED
309
+ # - QT_REQUIRE_VERSION
310
+ TabWidth: 4
311
+ # TableGenBreakInsideDAGArg: DontBreak
312
+ # UseTab: Never
313
+ # VerilogBreakBetweenInstancePorts: true
314
+ # WhitespaceSensitiveMacros:
315
+ # - BOOST_PP_STRINGIZE
316
+ # - CF_SWIFT_NAME
317
+ # - NS_SWIFT_NAME
318
+ # - PP_STRINGIZE
319
+ # - STRINGIZE
320
+ ...