cppcheck-py 2.16.0__py3-none-win_arm64.whl

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.
Files changed (86) hide show
  1. cppcheck/__init__.py +55 -0
  2. cppcheck/cppcheck-2.16.0.tar.gz +0 -0
  3. cppcheck/data/addons/__init__.py +0 -0
  4. cppcheck/data/addons/cppcheck.py +41 -0
  5. cppcheck/data/addons/cppcheckdata.py +1718 -0
  6. cppcheck/data/addons/findcasts.py +32 -0
  7. cppcheck/data/addons/misc.py +163 -0
  8. cppcheck/data/addons/misra.py +4992 -0
  9. cppcheck/data/addons/misra_9.py +559 -0
  10. cppcheck/data/addons/naming.py +91 -0
  11. cppcheck/data/addons/namingng.py +420 -0
  12. cppcheck/data/addons/runaddon.py +16 -0
  13. cppcheck/data/addons/threadsafety.py +350 -0
  14. cppcheck/data/addons/y2038.py +241 -0
  15. cppcheck/data/cfg/avr.cfg +402 -0
  16. cppcheck/data/cfg/bento4.cfg +142 -0
  17. cppcheck/data/cfg/boost.cfg +1284 -0
  18. cppcheck/data/cfg/bsd.cfg +567 -0
  19. cppcheck/data/cfg/cairo.cfg +89 -0
  20. cppcheck/data/cfg/cppcheck-lib.cfg +72 -0
  21. cppcheck/data/cfg/cppunit.cfg +48 -0
  22. cppcheck/data/cfg/dpdk.cfg +11 -0
  23. cppcheck/data/cfg/embedded_sql.cfg +4 -0
  24. cppcheck/data/cfg/emscripten.cfg +108 -0
  25. cppcheck/data/cfg/ginac.cfg +12848 -0
  26. cppcheck/data/cfg/gnu.cfg +1699 -0
  27. cppcheck/data/cfg/googletest.cfg +60 -0
  28. cppcheck/data/cfg/gtk.cfg +21364 -0
  29. cppcheck/data/cfg/icu.cfg +221 -0
  30. cppcheck/data/cfg/kde.cfg +87 -0
  31. cppcheck/data/cfg/libcerror.cfg +203 -0
  32. cppcheck/data/cfg/libcurl.cfg +487 -0
  33. cppcheck/data/cfg/libsigc++.cfg +36 -0
  34. cppcheck/data/cfg/lua.cfg +316 -0
  35. cppcheck/data/cfg/mfc.cfg +271 -0
  36. cppcheck/data/cfg/microsoft_atl.cfg +40 -0
  37. cppcheck/data/cfg/microsoft_sal.cfg +490 -0
  38. cppcheck/data/cfg/microsoft_unittest.cfg +20 -0
  39. cppcheck/data/cfg/motif.cfg +318 -0
  40. cppcheck/data/cfg/nspr.cfg +38 -0
  41. cppcheck/data/cfg/ntl.cfg +6907 -0
  42. cppcheck/data/cfg/opencv2.cfg +132 -0
  43. cppcheck/data/cfg/opengl.cfg +581 -0
  44. cppcheck/data/cfg/openmp.cfg +157 -0
  45. cppcheck/data/cfg/openssl.cfg +174 -0
  46. cppcheck/data/cfg/pcre.cfg +165 -0
  47. cppcheck/data/cfg/posix.cfg +6438 -0
  48. cppcheck/data/cfg/protobuf.cfg +9 -0
  49. cppcheck/data/cfg/python.cfg +674 -0
  50. cppcheck/data/cfg/qt.cfg +5468 -0
  51. cppcheck/data/cfg/ruby.cfg +142 -0
  52. cppcheck/data/cfg/sdl.cfg +354 -0
  53. cppcheck/data/cfg/selinux.cfg +3621 -0
  54. cppcheck/data/cfg/sfml.cfg +301 -0
  55. cppcheck/data/cfg/sqlite3.cfg +1571 -0
  56. cppcheck/data/cfg/std.cfg +9143 -0
  57. cppcheck/data/cfg/tinyxml2.cfg +37 -0
  58. cppcheck/data/cfg/vcl.cfg +4 -0
  59. cppcheck/data/cfg/windows.cfg +17181 -0
  60. cppcheck/data/cfg/wxsqlite3.cfg +1955 -0
  61. cppcheck/data/cfg/wxsvg.cfg +16905 -0
  62. cppcheck/data/cfg/wxwidgets.cfg +17229 -0
  63. cppcheck/data/cfg/zephyr.cfg +113 -0
  64. cppcheck/data/cfg/zlib.cfg +1450 -0
  65. cppcheck/data/cppcheck-htmlreport +990 -0
  66. cppcheck/data/cppcheck.exe +0 -0
  67. cppcheck/data/platforms/aix_ppc64.xml +18 -0
  68. cppcheck/data/platforms/arm32-wchar_t2.xml +18 -0
  69. cppcheck/data/platforms/arm32-wchar_t4.xml +18 -0
  70. cppcheck/data/platforms/arm64-wchar_t2.xml +18 -0
  71. cppcheck/data/platforms/arm64-wchar_t4.xml +18 -0
  72. cppcheck/data/platforms/avr8.xml +18 -0
  73. cppcheck/data/platforms/cray_sv1.xml +18 -0
  74. cppcheck/data/platforms/elbrus-e1cp.xml +18 -0
  75. cppcheck/data/platforms/mips32.xml +18 -0
  76. cppcheck/data/platforms/msp430_eabi_large_datamodel.xml +18 -0
  77. cppcheck/data/platforms/pic16.xml +18 -0
  78. cppcheck/data/platforms/pic8-enhanced.xml +18 -0
  79. cppcheck/data/platforms/pic8.xml +18 -0
  80. cppcheck/data/platforms/unix32-unsigned.xml +18 -0
  81. cppcheck/data/platforms/unix64-unsigned.xml +18 -0
  82. cppcheck_py-2.16.0.dist-info/METADATA +76 -0
  83. cppcheck_py-2.16.0.dist-info/RECORD +86 -0
  84. cppcheck_py-2.16.0.dist-info/WHEEL +5 -0
  85. cppcheck_py-2.16.0.dist-info/entry_points.txt +4 -0
  86. cppcheck_py-2.16.0.dist-info/licenses/LICENSE.md +191 -0
@@ -0,0 +1,301 @@
1
+ <?xml version="1.0"?>
2
+ <def format="2">
3
+ <function name="sf::err">
4
+ <noreturn>false</noreturn>
5
+ <leak-ignore/>
6
+ <use-retval/>
7
+ </function>
8
+ <function name="sf::sleep">
9
+ <noreturn>false</noreturn>
10
+ <leak-ignore/>
11
+ <arg nr="1">
12
+ <not-uninit/>
13
+ </arg>
14
+ </function>
15
+ <function name="sf::Time::asSeconds">
16
+ <noreturn>false</noreturn>
17
+ <leak-ignore/>
18
+ <use-retval/>
19
+ </function>
20
+ <function name="sf::Time::asMilliseconds">
21
+ <noreturn>false</noreturn>
22
+ <leak-ignore/>
23
+ <use-retval/>
24
+ </function>
25
+ <function name="sf::Time::asMicroseconds">
26
+ <noreturn>false</noreturn>
27
+ <leak-ignore/>
28
+ <use-retval/>
29
+ </function>
30
+ <function name="sf::String::clear">
31
+ <noreturn>false</noreturn>
32
+ <leak-ignore/>
33
+ </function>
34
+ <function name="sf::String::isEmpty">
35
+ <noreturn>false</noreturn>
36
+ <leak-ignore/>
37
+ <returnValue type="bool"/>
38
+ <use-retval/>
39
+ </function>
40
+ <function name="sf::String::getSize">
41
+ <noreturn>false</noreturn>
42
+ <leak-ignore/>
43
+ <returnValue type="std::size_t"/>
44
+ <use-retval/>
45
+ </function>
46
+ <function name="sf::String::find">
47
+ <noreturn>false</noreturn>
48
+ <leak-ignore/>
49
+ <arg nr="1">
50
+ <not-null/>
51
+ <not-uninit/>
52
+ </arg>
53
+ <arg nr="2" default="0">
54
+ <not-uninit/>
55
+ <valid>0:</valid>
56
+ </arg>
57
+ </function>
58
+ <function name="sf::String::substring">
59
+ <noreturn>false</noreturn>
60
+ <leak-ignore/>
61
+ <use-retval/>
62
+ <arg nr="1">
63
+ <not-uninit/>
64
+ <valid>0:</valid>
65
+ </arg>
66
+ <arg nr="2" default="0">
67
+ <not-uninit/>
68
+ </arg>
69
+ </function>
70
+ <function name="sf::String::erase">
71
+ <noreturn>false</noreturn>
72
+ <leak-ignore/>
73
+ <arg nr="1">
74
+ <not-uninit/>
75
+ <valid>0:</valid>
76
+ </arg>
77
+ <arg nr="2" default="1">
78
+ <not-uninit/>
79
+ </arg>
80
+ </function>
81
+ <function name="sf::RenderTarget::clear,sf::RenderWindow::clear,sf::RenderTexture::clear">
82
+ <noreturn>false</noreturn>
83
+ <leak-ignore/>
84
+ <arg nr="1" default="">
85
+ <not-uninit/>
86
+ </arg>
87
+ </function>
88
+ <function name="sf::RenderTarget::setView,sf::RenderWindow::setView,sf::RenderTexture::setView">
89
+ <noreturn>false</noreturn>
90
+ <leak-ignore/>
91
+ <arg nr="1">
92
+ <not-uninit/>
93
+ </arg>
94
+ </function>
95
+ <function name="sf::RenderTarget::getView,sf::RenderTarget::getDefaultView,sf::RenderWindow::getView,sf::RenderWindow::getDefaultView,sf::RenderTexture::getView,sf::RenderTexture::getDefaultView">
96
+ <noreturn>false</noreturn>
97
+ <leak-ignore/>
98
+ <use-retval/>
99
+ </function>
100
+ <function name="sf::RenderTarget::getViewport,sf::RenderWindow::getViewport,sf::RenderTexture::getViewport">
101
+ <noreturn>false</noreturn>
102
+ <leak-ignore/>
103
+ <use-retval/>
104
+ <arg nr="1">
105
+ <not-uninit/>
106
+ </arg>
107
+ </function>
108
+ <function name="sf::RenderTarget::mapPixelToCoords,sf::RenderTarget::mapCoordsToPixel,sf::RenderWindow::mapPixelToCoords,sf::RenderWindow::mapCoordsToPixel,sf::RenderTexture::mapPixelToCoords,sf::RenderTexture::mapCoordsToPixel">
109
+ <noreturn>false</noreturn>
110
+ <leak-ignore/>
111
+ <use-retval/>
112
+ <arg nr="1">
113
+ <not-uninit/>
114
+ </arg>
115
+ <arg nr="2" default="">
116
+ <not-uninit/>
117
+ </arg>
118
+ </function>
119
+ <function name="sf::RenderTarget::draw,sf::RenderWindow::draw,sf::RenderTexture::draw">
120
+ <noreturn>false</noreturn>
121
+ <leak-ignore/>
122
+ <arg nr="1">
123
+ <not-uninit/>
124
+ </arg>
125
+ <arg nr="2" default="">
126
+ <not-uninit/>
127
+ </arg>
128
+ <arg nr="3" default="">
129
+ <not-uninit/>
130
+ </arg>
131
+ <arg nr="4" default="">
132
+ <not-uninit/>
133
+ </arg>
134
+ </function>
135
+ <function name="sf::RenderTarget::getSize,sf::RenderWindow::getSize,sf::RenderTexture::getSize">
136
+ <noreturn>false</noreturn>
137
+ <leak-ignore/>
138
+ <use-retval/>
139
+ </function>
140
+ <function name="sf::RenderTarget::setActive,sf::RenderWindow::setActive,sf::RenderTexture::setActive,sf::Window::setActive">
141
+ <noreturn>false</noreturn>
142
+ <leak-ignore/>
143
+ <returnValue type="bool"/>
144
+ <arg nr="1" default="true">
145
+ <not-uninit/>
146
+ </arg>
147
+ </function>
148
+ <function name="sf::RenderTarget::pushGLStates,sf::RenderTarget::popGLStates,sf::RenderTarget::resetGLStates,sf::RenderWindow::pushGLStates,sf::RenderWindow::popGLStates,sf::RenderWindow::resetGLStates,sf::RenderTexture::pushGLStates,sf::RenderTexture::popGLStates,sf::RenderTexture::resetGLStates">
149
+ <noreturn>false</noreturn>
150
+ <leak-ignore/>
151
+ </function>
152
+ <function name="sf::Window::create,sf::RenderWindow::create">
153
+ <noreturn>false</noreturn>
154
+ <leak-ignore/>
155
+ <arg nr="1">
156
+ <not-uninit/>
157
+ </arg>
158
+ <arg nr="2" default="">
159
+ <not-uninit/>
160
+ </arg>
161
+ <arg nr="3" default="">
162
+ <not-uninit/>
163
+ </arg>
164
+ <arg nr="4" default="">
165
+ <not-uninit/>
166
+ </arg>
167
+ </function>
168
+ <function name="sf::Window::close,sf::RenderWindow::close">
169
+ <noreturn>false</noreturn>
170
+ <leak-ignore/>
171
+ </function>
172
+ <function name="sf::Window::isOpen,sf::RenderWindow::isOpen">
173
+ <noreturn>false</noreturn>
174
+ <leak-ignore/>
175
+ <use-retval/>
176
+ <returnValue type="bool"/>
177
+ </function>
178
+ <function name="sf::Window::getSettings,sf::RenderWindow::getSettings">
179
+ <noreturn>false</noreturn>
180
+ <leak-ignore/>
181
+ <use-retval/>
182
+ </function>
183
+ <function name="sf::Window::pollEvent,sf::Window::waitEvent,sf::RenderWindow::pollEvent,sf::RenderWindow::waitEvent">
184
+ <noreturn>false</noreturn>
185
+ <leak-ignore/>
186
+ <returnValue type="bool"/>
187
+ <arg nr="1"/>
188
+ </function>
189
+ <function name="sf::Window::getPosition,sf::RenderWindow::getPosition">
190
+ <noreturn>false</noreturn>
191
+ <leak-ignore/>
192
+ <use-retval/>
193
+ </function>
194
+ <function name="sf::Window::setPosition,sf::RenderWindow::setPosition">
195
+ <noreturn>false</noreturn>
196
+ <leak-ignore/>
197
+ <arg nr="1">
198
+ <not-uninit/>
199
+ </arg>
200
+ </function>
201
+ <function name="sf::Window::getSize,sf::RenderWindow::getSize">
202
+ <noreturn>false</noreturn>
203
+ <leak-ignore/>
204
+ <use-retval/>
205
+ </function>
206
+ <function name="sf::Window::setSize,sf::RenderWindow::setSize">
207
+ <noreturn>false</noreturn>
208
+ <leak-ignore/>
209
+ <arg nr="1">
210
+ <not-uninit/>
211
+ </arg>
212
+ </function>
213
+ <function name="sf::Window::setTitle,sf::RenderWindow::setTitle">
214
+ <noreturn>false</noreturn>
215
+ <leak-ignore/>
216
+ <arg nr="1">
217
+ <not-uninit/>
218
+ </arg>
219
+ </function>
220
+ <function name="sf::Window::setIcon,sf::RenderWindow::setIcon">
221
+ <noreturn>false</noreturn>
222
+ <leak-ignore/>
223
+ <arg nr="1">
224
+ <not-uninit/>
225
+ </arg>
226
+ <arg nr="2">
227
+ <not-uninit/>
228
+ </arg>
229
+ <arg nr="3">
230
+ <not-uninit/>
231
+ <not-null/>
232
+ </arg>
233
+ </function>
234
+ <function name="sf::Window::setVisible,sf::Window::setVerticalSyncEnabled,sf::Window::setMouseCursorVisible,sf::Window::setMouseCursorGrabbed,sf::Window::setKeyRepeatEnabled,sf::RenderWindow::setVisible,sf::RenderWindow::setVerticalSyncEnabled,sf::RenderWindow::setMouseCursorVisible,sf::RenderWindow::setMouseCursorGrabbed,sf::RenderWindow::setKeyRepeatEnabled">
235
+ <noreturn>false</noreturn>
236
+ <leak-ignore/>
237
+ <arg nr="1">
238
+ <not-uninit/>
239
+ </arg>
240
+ </function>
241
+ <function name="sf::Window::setFramerateLimit,sf::RenderWindow::setFramerateLimit">
242
+ <noreturn>false</noreturn>
243
+ <leak-ignore/>
244
+ <arg nr="1">
245
+ <not-uninit/>
246
+ <valid>0:</valid>
247
+ </arg>
248
+ </function>
249
+ <function name="sf::Window::setJoystickThreshold,sf::RenderWindow::setJoystickThreshold">
250
+ <noreturn>false</noreturn>
251
+ <leak-ignore/>
252
+ <arg nr="1">
253
+ <not-uninit/>
254
+ <valid>0:100</valid>
255
+ </arg>
256
+ </function>
257
+ <function name="sf::Window::requestFocus,sf::RenderWindow::requestFocus">
258
+ <noreturn>false</noreturn>
259
+ <leak-ignore/>
260
+ </function>
261
+ <function name="sf::Window::hasFocus,sf::RenderWindow::hasFocus">
262
+ <noreturn>false</noreturn>
263
+ <leak-ignore/>
264
+ <use-retval/>
265
+ <returnValue type="bool"/>
266
+ </function>
267
+ <function name="sf::Window::display,sf::RenderWindow::display">
268
+ <noreturn>false</noreturn>
269
+ <leak-ignore/>
270
+ </function>
271
+ <function name="sf::Window::getSystemHandle,sf::RenderWindow::getSystemHandle">
272
+ <noreturn>false</noreturn>
273
+ <leak-ignore/>
274
+ <use-retval/>
275
+ </function>
276
+ <container id="sfmlString" startPattern="sf::String" endPattern="" opLessAllowed="true">
277
+ <type string="std-like"/>
278
+ <size>
279
+ <function name="replace" action="change"/>
280
+ <function name="insert" action="change"/>
281
+ <function name="erase" action="change"/>
282
+ <function name="isEmpty" yields="empty"/>
283
+ <function name="getSize" yields="size"/>
284
+ <function name="clear" action="clear"/>
285
+ </size>
286
+ <access indexOperator="array-like">
287
+ <function name="begin" yields="start-iterator"/>
288
+ <function name="end" yields="end-iterator"/>
289
+ <function name="find" action="find"/>
290
+ <function name="getData" yields="buffer-nt"/>
291
+ </access>
292
+ </container>
293
+ <podtype name="sf::Int8" sign="s" size="1"/>
294
+ <podtype name="sf::Uint8" sign="u" size="1"/>
295
+ <podtype name="sf::Int16" sign="s" size="2"/>
296
+ <podtype name="sf::Uint16" sign="u" size="2"/>
297
+ <podtype name="sf::Int32" sign="s" size="4"/>
298
+ <podtype name="sf::Uint32" sign="u" size="4"/>
299
+ <podtype name="sf::Int64" sign="s" size="8"/>
300
+ <podtype name="sf::Uint64" sign="u" size="8"/>
301
+ </def>