Home
last modified time | relevance | path

Searched refs:source_paths (Results 1 – 20 of 20) sorted by relevance

/external/chromium-trace/catapult/third_party/vinn/vinn/
D_vinn.py46 def _ValidateSourcePaths(source_paths): argument
47 if source_paths is None:
49 for x in source_paths:
63 def _GetBootStrapJsContent(source_paths): argument
64 assert isinstance(source_paths, list)
74 source_paths = list(set(source_paths))
76 ','.join(_EscapeJsString(s) for s in source_paths))
122 def ExecuteFile(file_path, source_paths=None, js_args=None, v8_args=None, argument
137 res = RunFile(file_path, source_paths, js_args, v8_args, stdout, stdin)
141 def RunFile(file_path, source_paths=None, js_args=None, v8_args=None, argument
[all …]
Dvinn_unittest.py107 output = vinn.ExecuteFile(file_path, source_paths=[self.test_data_dir],
115 source_paths=[self.test_data_dir]*100)
121 output = vinn.ExecuteFile(file_path, source_paths=[self.test_data_dir])
131 output = vinn.ExecuteFile(file_path, source_paths=[self.test_data_dir])
139 file_path, source_paths=[self.test_data_dir])
150 res = vinn.RunFile(file_path, source_paths=[self.test_data_dir])
155 res = vinn.RunFile(file_path, source_paths=[self.test_data_dir])
160 res = vinn.RunFile(file_path, source_paths=[self.test_data_dir])
165 res = vinn.RunFile(file_path, source_paths=[self.test_data_dir])
179 vinn.ExecuteFile(file_path, source_paths=[self.test_data_dir])
[all …]
Dd8_bootstrap.js125 global.HTMLImportsLoader.addArrayToSourcePath(<%source_paths%>);
/external/chromium-trace/catapult/tracing/
Dtracing_project.py27 def _FindAllFilesRecursive(source_paths): argument
28 assert isinstance(source_paths, list)
30 for source_path in source_paths:
95 self.source_paths = []
96 self.source_paths.append(self.tracing_root_path)
97 self.source_paths.append(self.tracing_third_party_path)
98 self.source_paths.append(self.mre_path)
99 self.source_paths.append(self.jszip_path)
100 self.source_paths.append(self.glmatrix_path)
101 self.source_paths.append(self.d3_path)
[all …]
/external/chromium-trace/catapult/perf_insights/
Dperf_insights_project.py45 def _FindAllFilesRecursive(source_paths): argument
46 assert isinstance(source_paths, list)
48 for source_path in source_paths:
99 def source_paths(self): member in PerfInsightsProject
111 self._source_paths.extend(tracing_project.source_paths)
116 for source_path in self.source_paths:
124 return project_module.Project(self.source_paths)
/external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
Dproject.py12 def _FindAllFilesRecursive(source_paths): argument
14 for source_path in source_paths:
84 def __init__(self, source_paths=None): argument
91 self.source_paths = AbsFilenameList(self._WillPartOfPathChange)
93 if source_paths is not None:
94 self.source_paths.extend(source_paths)
110 'source_paths': list(self.source_paths)
114 return "Project(%s)" % repr(self.source_paths)
117 self.source_paths.append(path)
Dresource_loader.py34 def source_paths(self): member in ResourceLoader
36 return self.project.source_paths
55 for source_path in self.source_paths:
69 for script_path in self.source_paths:
118 module_filename, repr(self.source_paths)))
146 for source_path in self.source_paths:
156 (relative_raw_script_path, self.source_paths))
Dhtml_module_unittest.py39 def __init__(self, source_paths, initial_filenames_and_contents=None): argument
40 self._source_paths = source_paths
/external/chromium-trace/catapult/dashboard/
Ddashboard_project.py24 def _FindAllFilesRecursive(source_paths): argument
25 assert isinstance(source_paths, list)
27 for source_path in source_paths:
62 def source_paths(self): member in DashboardProject
73 self._source_paths.extend(tracing_project.source_paths)
/external/chromium-trace/catapult/tracing/tracing_build/
Drun_vinn_tests.py31 cmd, source_paths=list(project.source_paths),
Dtracing_dev_server_config.py51 return list(self.project.source_paths)
Dvulcanize_trace_viewer.py66 project.source_paths.append(p)
/external/chromium-trace/catapult/perf_insights/perf_insights_build/
Drun_vinn_tests.py31 cmd, source_paths=list(project.source_paths),
Dperf_insights_dev_server_config.py226 return list(self.project.source_paths)
/external/chromium-trace/catapult/third_party/coverage/coverage/
Dxmlreport.py41 self.source_paths = set()
45 self.source_paths.add(files.canonical_filename(src))
81 for path in sorted(self.source_paths):
152 self.source_paths.add(fr.filename[:-len(rel_name)].rstrip(r"\/"))
/external/chromium-trace/catapult/perf_insights/perf_insights/mre/
Dreduce_map_results.py22 all_source_paths = list(project.source_paths)
33 source_paths=all_source_paths, js_args=js_args)
/external/chromium-trace/catapult/catapult_build/
Dprint_project_info69 if args.source_paths:
70 print json.dumps(project.source_paths)
Ddev_server.py114 source_paths = kwargs.pop('_source_paths', [])
119 for mapped_path in source_paths:
129 def GetServingPathForAbsFilename(source_paths, filename): argument
133 for mapped_path in source_paths:
/external/chromium-trace/catapult/perf_insights/perf_insights/
Dmap_single_trace.py84 all_source_paths = list(project.source_paths)
98 _MAP_SINGLE_TRACE_CMDLINE_PATH, source_paths=all_source_paths,
/external/chromium-trace/catapult/dashboard/dashboard_build/
Ddashboard_dev_server_config.py52 return list(self.project.source_paths)