Home
last modified time | relevance | path

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

/external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
Dd8_runner.py40 def _ValidateSourcePaths(source_paths): argument
41 if source_paths is None:
43 for x in source_paths:
49 def _GetBootStrapJsContent(source_paths): argument
57 source_path_string = json.dumps(source_paths)
92 def ExecuteFile(file_path, source_paths=None, js_args=None, argument
107 res = RunFile(file_path, source_paths, js_args, stdout, stdin)
111 def RunFile(file_path, source_paths=None, js_args=None, stdout=subprocess.PIPE, argument
121 _ValidateSourcePaths(source_paths)
127 if source_paths is None:
[all …]
Dd8_runner_unittest.py101 output = d8_runner.ExecuteFile(file_path, source_paths=[self.test_data_dir],
108 output = d8_runner.ExecuteFile(file_path, source_paths=[self.test_data_dir])
118 output = d8_runner.ExecuteFile(file_path, source_paths=[self.test_data_dir])
126 file_path, source_paths=[self.test_data_dir])
137 res = d8_runner.RunFile(file_path, source_paths=[self.test_data_dir])
142 res = d8_runner.RunFile(file_path, source_paths=[self.test_data_dir])
147 res = d8_runner.RunFile(file_path, source_paths=[self.test_data_dir])
152 res = d8_runner.RunFile(file_path, source_paths=[self.test_data_dir])
166 d8_runner.ExecuteFile(file_path, source_paths=[self.test_data_dir])
191 d8_runner.ExecuteFile(file_path, source_paths=[self.test_data_dir])
[all …]
/external/chromium-trace/trace-viewer/tracing/
Dtracing_project.py12 def _FindAllFilesRecursive(source_paths): argument
13 assert isinstance(source_paths, list)
15 for source_path in source_paths:
72 self.source_paths.append(self.tracing_src_path)
73 self.source_paths.append(self.tracing_root_path)
74 self.source_paths.append(self.tracing_third_party_path)
75 self.source_paths.append(self.jszip_path)
76 self.source_paths.append(self.glmatrix_path)
77 self.source_paths.append(self.d3_path)
78 self.source_paths.append(self.chai_path)
[all …]
Drun_d8_tests32 cmd, source_paths=list(project.source_paths),
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
Dproject.py12 def _FindAllFilesRecursive(source_paths): argument
14 for source_path in source_paths:
85 def __init__(self, source_paths=None): argument
92 self.source_paths = AbsFilenameList(self._WillPartOfPathChange)
94 if source_paths is not None:
95 self.source_paths.extend(source_paths)
111 'source_paths': list(self.source_paths)
115 return "Project(%s)" % repr(self.source_paths)
118 self.source_paths.append(path)
Dresource_loader.py33 def source_paths(self): member in ResourceLoader
35 return self.project.source_paths
54 for source_path in self.source_paths:
68 for script_path in self.source_paths:
117 module_filename, repr(self.source_paths)))
145 for source_path in self.source_paths:
154 (relative_raw_script_path, self.source_paths))
Dhtml_module_unittest.py37 def __init__(self, source_paths, initial_filenames_and_contents=None): argument
38 self._source_paths = source_paths
/external/chromium-trace/trace-viewer/tracing/build/
Dvulcanize_trace_viewer.py77 project.source_paths.append(p)
Dtracing_dev_server.py113 project.source_paths.append(server.data_dir)
Ddev_server.py62 for mapped_path in self.server.project.source_paths: