Lines Matching full:files
71 help="ignore files matching this Python regex "
163 files = sorted(undefined_b.get(symbol))
164 undefined[symbol] = files
165 # check if there are new files that reference the undefined symbol
167 files = sorted(undefined_b.get(symbol) -
169 if files:
170 undefined[symbol] = files
183 files = sorted(undefined.get(symbol))
184 print("%s: %s" % (yel("Referencing files"), ", ".join(files)))
291 """Return a list of all files in the current git directory."""
292 # use 'git ls-files' to get the worklist
293 stdout = execute(["git", "ls-files"])
297 files = []
303 files.append(gitfile)
304 return files
309 and a list of referencing files as value. Files matching %ignore are not
334 # add source files that do not match the ignore pattern
337 # parse source files
342 # parse kconfig files
351 # inverse mapping of referenced_symbols to dict(symbol: [files])
359 undefined = {} # {symbol: [files]}
376 files as keys and lists of references Kconfig symbols as values."""
412 """Parse kconfig files and return tuple of defined and references Kconfig
413 symbols. Note, @args is a tuple of a list of files and the @ignore
424 # do not collect references for files that match the ignore pattern