Home
last modified time | relevance | path

Searched refs:report_path (Results 1 – 14 of 14) sorted by relevance

/external/rust/crates/criterion/src/plot/plotters_backend/
Dmod.rs42 ctx.context.report_path(ctx.id, "relative_pdf_small.svg"), in pdf()
47 ctx.context.report_path(ctx.id, "both/pdf.svg"), in pdf()
85 .report_path(ctx.id, "relative_regression_small.svg"), in regression()
89 ctx.context.report_path(ctx.id, "both/regression.svg"), in regression()
93 ctx.context.report_path(ctx.id, "regression_small.svg"), in regression()
97 ctx.context.report_path(ctx.id, "regression.svg"), in regression()
128 .report_path(ctx.id, "relative_iteration_times_small.svg"), in iteration_times()
132 ctx.context.report_path(ctx.id, "both/iteration_times.svg"), in iteration_times()
136 ctx.context.report_path(ctx.id, "iteration_times_small.svg"), in iteration_times()
140 ctx.context.report_path(ctx.id, "iteration_times.svg"), in iteration_times()
[all …]
Ddistributions.rs56 let path = context.report_path(id, &format!("{}.svg", statistic)); in abs_distribution()
216 let path = context.report_path(id, &format!("change/{}.svg", statistic)); in rel_distribution()
Dpdf.rs132 let path = context.report_path(id, "pdf_small.svg"); in pdf_small()
206 let path = context.report_path(id, "pdf.svg"); in pdf()
/external/rust/crates/criterion/src/html/
Dmod.rs125 let report_path = path.join("report/index.html"); in if_exists() localVariable
126 if PathBuf::from(output_directory).join(&report_path).is_file() { in if_exists()
127 Some(report_path.to_string_lossy().to_string()) in if_exists()
390 let mut report_path = report_context.output_directory.clone(); in measurement_complete() localVariable
391 report_path.push(id.as_directory_name()); in measurement_complete()
392 report_path.push("report"); in measurement_complete()
393 report_path.push("index.html"); in measurement_complete()
394 debug_context(&report_path, &context); in measurement_complete()
400 try_else_return!(fs::save_string(&text, &report_path)); in measurement_complete()
557 let report_path = output_directory.join("report").join("index.html"); in final_summary() localVariable
[all …]
/external/rust/crates/criterion/src/plot/gnuplot_backend/
Diteration_times.rs61 let path = context.report_path(id, "iteration_times.svg"); in iteration_times()
76 let path = context.report_path(id, "iteration_times_small.svg"); in iteration_times_small()
154 let path = context.report_path(id, "both/iteration_times.svg"); in iteration_times_comparison()
170 let path = context.report_path(id, "relative_iteration_times_small.svg"); in iteration_times_comparison_small()
Dregression.rs111 let path = context.report_path(id, "regression.svg"); in regression()
126 let path = context.report_path(id, "regression_small.svg"); in regression_small()
258 let path = context.report_path(id, "both/regression.svg"); in regression_comparison()
276 let path = context.report_path(id, "relative_regression_small.svg"); in regression_comparison_small()
Dpdf.rs222 let path = context.report_path(id, "pdf.svg"); in pdf()
283 let path = context.report_path(id, "pdf_small.svg"); in pdf_small()
374 let path = context.report_path(id, "both/pdf.svg"); in pdf_comparison()
389 let path = context.report_path(id, "relative_pdf_small.svg"); in pdf_comparison_small()
Dt_test.rs62 let path = context.report_path(id, "change/t-test.svg"); in t_test()
Ddistributions.rs121 let path = context.report_path(id, &format!("{}.svg", statistic)); in abs_distribution()
284 let path = context.report_path(id, &format!("change/{}.svg", statistic)); in rel_distribution()
/external/autotest/client/tests/unixbench/
Dunixbench.py47 report_path = os.path.join(self.resultsdir, 'report')
48 self.report_data = open(report_path).readlines()[9:]
/external/autotest/client/tools/
Dcrash_handler.py179 report_path = os.path.join(basedir, 'report')
180 write_to_file(report_path, report)
/external/tensorflow/tensorflow/python/tpu/
Dtensor_tracer_report.py308 report_path = report_proto_path(tt_parameters.trace_dir)
309 with gfile.GFile(report_path, 'wb') as f:
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_libcdep.cc816 InternalScopedString report_path(kMaxPathLength); in GenerateHtmlReport() local
818 CovOpenFile(&report_path, false /* packed */, GetProcessName(), "html"); in GenerateHtmlReport()
824 Printf("coverage report generated to %s\n", report_path.data()); in GenerateHtmlReport()
/external/rust/crates/criterion/src/
Dreport.rs255 pub fn report_path<P: AsRef<Path> + ?Sized>(&self, id: &BenchmarkId, file_name: &P) -> PathBuf { in report_path() method