Lines Matching refs:files
35 files = api.file.glob_paths(
40 analyzed += len(files)
41 if files:
42 analyze_wasm_file(api, checkout_root, out_dir, files)
44 files = api.file.glob_paths(
49 analyzed += len(files)
50 if files:
51 analyze_web_file(api, checkout_root, out_dir, files)
53 files = api.file.glob_paths(
58 analyzed += len(files)
59 if files:
60 analyze_web_file(api, checkout_root, out_dir, files)
62 files = api.file.glob_paths(
67 analyzed += len(files)
68 if files:
69 analyze_flutter_lib(api, checkout_root, out_dir, files)
71 files = api.file.glob_paths(
76 analyzed += len(files)
77 if files:
78 analyze_cpp_lib(api, checkout_root, out_dir, files)
80 files = api.file.glob_paths(
85 analyzed += len(files)
86 if files:
87 make_treemap(api, checkout_root, out_dir, files)
118 def analyze_web_file(api, checkout_root, out_dir, files): argument
121 for f in files:
131 def analyze_cpp_lib(api, checkout_root, out_dir, files): argument
135 for f in files:
145 def analyze_flutter_lib(api, checkout_root, out_dir, files): argument
149 for f in files:
175 def analyze_wasm_file(api, checkout_root, out_dir, files): argument
179 for f in files:
201 def make_treemap(api, checkout_root, out_dir, files): argument
202 for f in files: