measur-tools-suite 1.0.11-beta.25 → 1.0.11-beta.28
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 +332 -0
- package/CONTRIBUTING.md +1254 -0
- package/README.md +3 -3
- package/bin/package.json +1 -1
- package/docs/mainpage.dox +88 -0
- package/mathjax-config.js +30 -0
- package/package.json +1 -1
package/.clang-format
ADDED
|
@@ -0,0 +1,332 @@
|
|
|
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: '^<[^/ >]+>$' # C++ standard library headers, e.g., <string>, <vector>
|
|
141
|
+
Priority: 1
|
|
142
|
+
SortPriority: 0
|
|
143
|
+
CaseSensitive: false
|
|
144
|
+
- Regex: '^"catch/.*"$' # Catch headers
|
|
145
|
+
Priority: 2
|
|
146
|
+
SortPriority: 0
|
|
147
|
+
CaseSensitive: false
|
|
148
|
+
- Regex: '^"fast-cpp-csv-parser/.*"$' # fast-cpp-csv-parser headers
|
|
149
|
+
Priority: 2
|
|
150
|
+
SortPriority: 0
|
|
151
|
+
CaseSensitive: false
|
|
152
|
+
- Regex: '^"sqlite/.*"$' # SQLite headers
|
|
153
|
+
Priority: 3
|
|
154
|
+
SortPriority: 0
|
|
155
|
+
CaseSensitive: false
|
|
156
|
+
- Regex: '^".*"$' # Catch all for all other third-party headers, e.g., "someheader.h"
|
|
157
|
+
Priority: 4
|
|
158
|
+
SortPriority: 0
|
|
159
|
+
CaseSensitive: false
|
|
160
|
+
- Regex: '^"[^"]+\.h"' # Project-local includes, e.g., "myheader.h"
|
|
161
|
+
Priority: 5
|
|
162
|
+
SortPriority: 0
|
|
163
|
+
CaseSensitive: false
|
|
164
|
+
# - Regex: ^<ext/.*\.h>
|
|
165
|
+
# Priority: 2
|
|
166
|
+
# SortPriority: 0
|
|
167
|
+
# CaseSensitive: false
|
|
168
|
+
# - Regex: ^<.*\.h>
|
|
169
|
+
# Priority: 1
|
|
170
|
+
# SortPriority: 0
|
|
171
|
+
# CaseSensitive: false
|
|
172
|
+
# - Regex: ^<.*
|
|
173
|
+
# Priority: 2
|
|
174
|
+
# SortPriority: 0
|
|
175
|
+
# CaseSensitive: false
|
|
176
|
+
# - Regex: .*
|
|
177
|
+
# Priority: 3
|
|
178
|
+
# SortPriority: 0
|
|
179
|
+
# CaseSensitive: false
|
|
180
|
+
# IncludeIsMainRegex: ([-_](test|unittest))?$
|
|
181
|
+
# IncludeIsMainSourceRegex: ""
|
|
182
|
+
# IndentAccessModifiers: false
|
|
183
|
+
# IndentCaseBlocks: false
|
|
184
|
+
IndentCaseLabels: true
|
|
185
|
+
# IndentExternBlock: AfterExternBlock
|
|
186
|
+
# IndentGotoLabels: true
|
|
187
|
+
IndentPPDirectives: BeforeHash
|
|
188
|
+
# IndentRequiresClause: true
|
|
189
|
+
IndentWidth: 4
|
|
190
|
+
# IndentWrappedFunctionNames: false
|
|
191
|
+
# InsertBraces: false
|
|
192
|
+
# InsertNewlineAtEOF: false
|
|
193
|
+
# InsertTrailingCommas: None
|
|
194
|
+
# IntegerLiteralSeparator:
|
|
195
|
+
# Binary: 0
|
|
196
|
+
# BinaryMinDigits: 0
|
|
197
|
+
# Decimal: 0
|
|
198
|
+
# DecimalMinDigits: 0
|
|
199
|
+
# Hex: 0
|
|
200
|
+
# HexMinDigits: 0
|
|
201
|
+
# JavaScriptQuotes: Leave
|
|
202
|
+
# JavaScriptWrapImports: true
|
|
203
|
+
# KeepEmptyLines:
|
|
204
|
+
# AtEndOfFile: false
|
|
205
|
+
# AtStartOfBlock: false
|
|
206
|
+
# AtStartOfFile: true
|
|
207
|
+
# LambdaBodyIndentation: Signature
|
|
208
|
+
# LineEnding: DeriveLF
|
|
209
|
+
# MacroBlockBegin: ""
|
|
210
|
+
# MacroBlockEnd: ""
|
|
211
|
+
# MainIncludeChar: Quote
|
|
212
|
+
# MaxEmptyLinesToKeep: 1
|
|
213
|
+
# NamespaceIndentation: None
|
|
214
|
+
# ObjCBinPackProtocolList: Never
|
|
215
|
+
# ObjCBlockIndentWidth: 2
|
|
216
|
+
# ObjCBreakBeforeNestedBlockParam: true
|
|
217
|
+
# ObjCSpaceAfterProperty: false
|
|
218
|
+
# ObjCSpaceBeforeProtocolList: true
|
|
219
|
+
# PPIndentWidth: -1
|
|
220
|
+
# PackConstructorInitializers: NextLine
|
|
221
|
+
# PenaltyBreakAssignment: 2
|
|
222
|
+
# PenaltyBreakBeforeFirstCallParameter: 1
|
|
223
|
+
# PenaltyBreakComment: 300
|
|
224
|
+
# PenaltyBreakFirstLessLess: 120
|
|
225
|
+
# PenaltyBreakOpenParenthesis: 0
|
|
226
|
+
# PenaltyBreakScopeResolution: 500
|
|
227
|
+
# PenaltyBreakString: 1000
|
|
228
|
+
# PenaltyBreakTemplateDeclaration: 10
|
|
229
|
+
# PenaltyExcessCharacter: 1000000
|
|
230
|
+
# PenaltyIndentedWhitespace: 0
|
|
231
|
+
# PenaltyReturnTypeOnItsOwnLine: 200
|
|
232
|
+
PointerAlignment: Left
|
|
233
|
+
# QualifierAlignment: Leave
|
|
234
|
+
# RawStringFormats:
|
|
235
|
+
# - Language: Cpp
|
|
236
|
+
# Delimiters:
|
|
237
|
+
# - cc
|
|
238
|
+
# - CC
|
|
239
|
+
# - cpp
|
|
240
|
+
# - Cpp
|
|
241
|
+
# - CPP
|
|
242
|
+
# - c++
|
|
243
|
+
# - C++
|
|
244
|
+
# CanonicalDelimiter: ""
|
|
245
|
+
# BasedOnStyle: google
|
|
246
|
+
# - Language: TextProto
|
|
247
|
+
# Delimiters:
|
|
248
|
+
# - pb
|
|
249
|
+
# - PB
|
|
250
|
+
# - proto
|
|
251
|
+
# - PROTO
|
|
252
|
+
# EnclosingFunctions:
|
|
253
|
+
# - EqualsProto
|
|
254
|
+
# - EquivToProto
|
|
255
|
+
# - PARSE_PARTIAL_TEXT_PROTO
|
|
256
|
+
# - PARSE_TEST_PROTO
|
|
257
|
+
# - PARSE_TEXT_PROTO
|
|
258
|
+
# - ParseTextOrDie
|
|
259
|
+
# - ParseTextProtoOrDie
|
|
260
|
+
# - ParseTestProto
|
|
261
|
+
# - ParsePartialTestProto
|
|
262
|
+
# CanonicalDelimiter: pb
|
|
263
|
+
# BasedOnStyle: google
|
|
264
|
+
# ReferenceAlignment: Pointer
|
|
265
|
+
ReflowComments: true
|
|
266
|
+
# RemoveBracesLLVM: false
|
|
267
|
+
# RemoveParentheses: Leave
|
|
268
|
+
# RemoveSemicolon: false
|
|
269
|
+
# RequiresClausePosition: OwnLine
|
|
270
|
+
# RequiresExpressionIndentation: OuterScope
|
|
271
|
+
# SeparateDefinitionBlocks: Leave
|
|
272
|
+
# ShortNamespaceLines: 1
|
|
273
|
+
# SkipMacroDefinitionBody: false
|
|
274
|
+
SortIncludes: CaseInsensitive
|
|
275
|
+
# SortJavaStaticImport: Before
|
|
276
|
+
# SortUsingDeclarations: LexicographicNumeric
|
|
277
|
+
# SpaceAfterCStyleCast: false
|
|
278
|
+
# SpaceAfterLogicalNot: false
|
|
279
|
+
# SpaceAfterTemplateKeyword: true
|
|
280
|
+
# SpaceAroundPointerQualifiers: Default
|
|
281
|
+
SpaceBeforeAssignmentOperators: true
|
|
282
|
+
# SpaceBeforeCaseColon: false
|
|
283
|
+
SpaceBeforeCpp11BracedList: true
|
|
284
|
+
# SpaceBeforeCtorInitializerColon: true
|
|
285
|
+
SpaceBeforeInheritanceColon: true
|
|
286
|
+
# SpaceBeforeJsonColon: false
|
|
287
|
+
SpaceBeforeParens: ControlStatements
|
|
288
|
+
# SpaceBeforeParensOptions:
|
|
289
|
+
# AfterControlStatements: true
|
|
290
|
+
# AfterForeachMacros: true
|
|
291
|
+
# AfterFunctionDeclarationName: false
|
|
292
|
+
# AfterFunctionDefinitionName: false
|
|
293
|
+
# AfterIfMacros: true
|
|
294
|
+
# AfterOverloadedOperator: false
|
|
295
|
+
# AfterPlacementOperator: true
|
|
296
|
+
# AfterRequiresInClause: false
|
|
297
|
+
# AfterRequiresInExpression: false
|
|
298
|
+
# BeforeNonEmptyParentheses: false
|
|
299
|
+
# SpaceBeforeRangeBasedForLoopColon: true
|
|
300
|
+
# SpaceBeforeSquareBrackets: false
|
|
301
|
+
# SpaceInEmptyBlock: false
|
|
302
|
+
# SpacesBeforeTrailingComments: 2
|
|
303
|
+
# SpacesInAngles: Never
|
|
304
|
+
# SpacesInContainerLiterals: true
|
|
305
|
+
# SpacesInLineCommentPrefix:
|
|
306
|
+
# Minimum: 1
|
|
307
|
+
# Maximum: -1
|
|
308
|
+
# SpacesInParens: Never
|
|
309
|
+
# SpacesInParensOptions:
|
|
310
|
+
# ExceptDoubleParentheses: false
|
|
311
|
+
# InConditionalStatements: false
|
|
312
|
+
# InCStyleCasts: false
|
|
313
|
+
# InEmptyParentheses: false
|
|
314
|
+
# Other: false
|
|
315
|
+
# SpacesInSquareBrackets: false
|
|
316
|
+
# Standard: Auto
|
|
317
|
+
# StatementAttributeLikeMacros:
|
|
318
|
+
# - Q_EMIT
|
|
319
|
+
# StatementMacros:
|
|
320
|
+
# - Q_UNUSED
|
|
321
|
+
# - QT_REQUIRE_VERSION
|
|
322
|
+
TabWidth: 4
|
|
323
|
+
# TableGenBreakInsideDAGArg: DontBreak
|
|
324
|
+
# UseTab: Never
|
|
325
|
+
# VerilogBreakBetweenInstancePorts: true
|
|
326
|
+
# WhitespaceSensitiveMacros:
|
|
327
|
+
# - BOOST_PP_STRINGIZE
|
|
328
|
+
# - CF_SWIFT_NAME
|
|
329
|
+
# - NS_SWIFT_NAME
|
|
330
|
+
# - PP_STRINGIZE
|
|
331
|
+
# - STRINGIZE
|
|
332
|
+
...
|