Searched refs:make_filename_safe (Results 1 – 2 of 2) sorted by relevance
/external/rust/crates/criterion/src/ |
D | report.rs | 80 pub fn make_filename_safe(string: &str) -> String { in make_filename_safe() function 131 make_filename_safe(&group_id), in new() 132 make_filename_safe(func), in new() 133 make_filename_safe(val) in new() 137 make_filename_safe(&group_id), in new() 138 make_filename_safe(func) in new() 142 make_filename_safe(&group_id), in new() 143 make_filename_safe(val) in new() 145 (&None, &None) => make_filename_safe(&group_id), in new() 796 let safe = make_filename_safe(input); in test_make_filename_safe_replaces_characters() [all …]
|
/external/rust/crates/criterion/src/html/ |
D | mod.rs | 1 use crate::report::{make_filename_safe, BenchmarkId, MeasurementData, Report, ReportContext}; 140 let path = PathBuf::from(make_filename_safe(group_id)); in group() 149 let mut path = PathBuf::from(make_filename_safe(group_id)); in function() 150 path.push(make_filename_safe(function_id)); in function() 159 let mut path = PathBuf::from(make_filename_safe(group_id)); in value() 160 path.push(make_filename_safe(value_str)); in value()
|