Lines Matching refs:files
46 files = api.file.glob_paths(
51 analyzed += len(files)
52 if files:
53 analyze_wasm_file(api, checkout_root, out_dir, files)
55 files = api.file.glob_paths(
60 analyzed += len(files)
61 if files:
62 analyze_web_file(api, checkout_root, out_dir, files)
64 files = api.file.glob_paths(
69 analyzed += len(files)
70 if files:
71 analyze_web_file(api, checkout_root, out_dir, files)
73 files = api.file.glob_paths(
78 analyzed += len(files)
79 if files:
80 analyze_flutter_lib(api, checkout_root, out_dir, files)
82 files = api.file.glob_paths(
87 analyzed += len(files)
88 if files:
89 analyze_cpp_lib(api, checkout_root, out_dir, files)
91 files = api.file.glob_paths(
96 analyzed += len(files)
97 if files:
98 make_treemap(api, checkout_root, out_dir, files)
100 files = api.file.glob_paths(
105 analyzed += len(files)
106 if files:
107 make_treemap(api, checkout_root, out_dir, files)
137 def analyze_web_file(api, checkout_root, out_dir, files): argument
140 for f in files:
164 def analyze_cpp_lib(api, checkout_root, out_dir, files): argument
168 for f in files:
192 def analyze_flutter_lib(api, checkout_root, out_dir, files): argument
196 for f in files:
231 def analyze_wasm_file(api, checkout_root, out_dir, files): argument
235 for f in files:
263 def make_treemap(api, checkout_root, out_dir, files): argument
264 for f in files: