Lines Matching refs:files
49 files = api.file.glob_paths(
54 analyzed += len(files)
55 if files:
56 analyze_wasm_file(api, checkout_root, out_dir, files)
58 files = api.file.glob_paths(
59 'find JS files',
63 analyzed += len(files)
64 if files:
65 analyze_web_file(api, checkout_root, out_dir, files)
67 files = api.file.glob_paths(
68 'find JS mem files',
72 analyzed += len(files)
73 if files:
74 analyze_web_file(api, checkout_root, out_dir, files)
76 files = api.file.glob_paths(
81 analyzed += len(files)
82 if files:
83 analyze_flutter_lib(api, checkout_root, out_dir, files)
85 files = api.file.glob_paths(
90 analyzed += len(files)
91 if files:
92 analyze_cpp_lib(api, checkout_root, out_dir, files)
94 files = api.file.glob_paths(
99 analyzed += len(files)
100 if files:
101 make_treemap(api, checkout_root, out_dir, files)
103 files = api.file.glob_paths(
108 analyzed += len(files)
109 if files:
110 make_treemap(api, checkout_root, out_dir, files)
113 raise Exception('No files were analyzed!')
140 def analyze_web_file(api, checkout_root, out_dir, files):
143 for f in files:
167 def analyze_cpp_lib(api, checkout_root, out_dir, files):
171 for f in files:
195 def analyze_flutter_lib(api, checkout_root, out_dir, files):
199 for f in files:
234 def analyze_wasm_file(api, checkout_root, out_dir, files):
238 for f in files:
265 # make a zip file containing an HTML treemap of the files
266 def make_treemap(api, checkout_root, out_dir, files):
267 for f in files: