MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / process

Function process

addons/namingng.py:271–280  ·  view source on GitHub ↗
(dumpfiles, configfile, cli, debugprint)

Source from the content-addressed store, hash-verified

269 report_pending_ifndef(pending_ifndef,guard_column)
270
271def process(dumpfiles, configfile, cli, debugprint):
272 conf = loadConfig(configfile)
273
274 for afile in dumpfiles:
275 if not afile[-5:] == '.dump':
276 continue
277 if not cli:
278 print('Checking ' + afile + '...')
279 data = cppcheckdata.CppcheckData(afile)
280 process_data(conf,data,cli,debugprint)
281
282def check_file_naming(conf,data):
283 for source_file in data.files:

Callers 1

namingng.pyFile · 0.85

Calls 2

loadConfigFunction · 0.85
process_dataFunction · 0.85

Tested by

no test coverage detected