Lines Matching full:files
70 help="ignore files matching this Python regex "
165 files = sorted(undefined_b.get(symbol))
166 undefined[symbol] = files
167 # check if there are new files that reference the undefined symbol
169 files = sorted(undefined_b.get(symbol) -
171 if files:
172 undefined[symbol] = files
185 files = sorted(undefined.get(symbol))
186 print("%s: %s" % (yel("Referencing files"), ", ".join(files)))
293 """Return a list of all files in the current git directory."""
294 # use 'git ls-files' to get the worklist
295 stdout = execute(["git", "ls-files"])
299 files = []
305 files.append(gitfile)
306 return files
311 and a list of referencing files as value. Files matching %ignore are not
336 # add source files that do not match the ignore pattern
339 # parse source files
344 # parse kconfig files
353 # inverse mapping of referenced_symbols to dict(symbol: [files])
361 undefined = {} # {symbol: [files]}
378 files as keys and lists of references Kconfig symbols as values."""
414 """Parse kconfig files and return tuple of defined and references Kconfig
415 symbols. Note, @args is a tuple of a list of files and the @ignore
426 # do not collect references for files that match the ignore pattern