Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/systrace/systrace/
Doutput_generator.py89 html_file = open(output_file_name, 'wb')
90 html_file.write(html_prefix.replace('{{SYSTRACE_TRACE_VIEWER_HTML}}',
96 html_file.write('<!-- BEGIN TRACE -->\n')
98 html_file.write(' <script class="trace-data" type="application/text">\n')
99 html_file.write(_ConvertToHtmlString(result.raw_data))
100 html_file.write(' </script>\n')
101 html_file.write('<!-- END TRACE -->\n')
104 html_file.write(html_suffix)
105 html_file.close()
Dupdate_systrace_trace_viewer.py33 def get_catapult_rev_in_file_(html_file): argument
34 assert os.path.exists(html_file)
36 with open(html_file, 'r') as f:
/external/autotest/client/common_lib/cros/
Dwebrtc_utils.py58 html_file = tempfile.NamedTemporaryFile(
60 html_file.write(html)
61 html_file.close()
62 return html_file
Dtest_webrtc_peer_connection.py77 def start_test(self, cr, html_file): argument
95 os.path.join(self.bindir, html_file.name)))
171 html_file = webrtc_utils.create_temp_html_file(
180 [own_script_path, html_file.name, common_script_path])
181 self.start_test(cr, html_file)
/external/autotest/client/bin/result_tools/
Dview.py389 def build(client_collected_bytes, summary, html_file): argument
421 job_dir_sections = html_file.split(os.sep)[:-1]
438 with open(html_file, 'w') as f:
Dutils_unittest.py311 html_file = os.path.join(self.test_dir,
313 result_view.build(client_collected_bytes, summary, html_file)
315 self.assertGreater(os.stat(html_file).st_size, 1000)
/external/autotest/client/site_tests/firmware_TouchMTB/
Dnoise_summary.py225 html_file = open(input_file)
231 html = html_file.read()
236 html_file.close()
/external/chromium-trace/catapult/systrace/profile_chrome/
Dprofiler.py39 html_file = output or trace_results[0].source_name + '.html'
40 result = output_generator.GenerateHTMLOutput(trace_results, html_file)
/external/toolchain-utils/automation/clients/report/dejagnu/
Dmain.py107 with open(opts.output, 'w') as html_file:
108 html_file.write(html)
/external/autotest/server/
Dsite_utils.py979 html_file = os.path.join(path, result_view.DEFAULT_RESULT_SUMMARY_NAME)
980 result_view.build(client_collected_bytes, summary, html_file)