Home | History | Annotate | Download | only in CodeCoverage

Lines Matching full:files

44     Collect all files that match the match_array.
48 for root, dirs, files in os.walk(src):
52 for file in files:
64 Parse the .d files of the gcc
80 # Remove files outside WebKit, make path absolute
87 Collect gcov files, collect_sources is not used as it also creates
89 Actually we will build a mapping from source file to gcov files of
150 for root, dirs, files in os.walk(base_path):
153 for file in files:
175 Generate gcov files in the right directory
178 building. Each directory contains a set of files we will
179 try to generate gcov files for.
191 sources actual source files relative to src_dir e.g kdelibs/kdecore/klibloader.cpp
193 dirs Where to take a look for gcov files
194 base The base directory for files. All files not inside base will be ignored
222 files = {}
229 if not dep in files:
230 files[dep] = dep
232 sources = files.keys()
235 print "Will run inefficient generation of gcov files now"