Lines Matching defs:str
23 def extract_results(bench_results: List[Dict[str, Dict[Any, Any]]],
24 fixed_benchmark_params: Dict[str, Union[str, Tuple[str, ...]]],
25 column_dimension: str,
26 row_dimension: str,
27 result_dimension: str) -> Tuple[Dict[str, Dict[str, Dict[str, Any]]],
77 def print_markdown_table(table_data: List[List[str]]) -> None:
100 def compute_min_max(table_data, row_headers: List[str], column_headers: List[str]) -> Interval:
189 def format_string_pretty_printer(format_string: str) -> Callable[[str], str]:
190 def pretty_print(s: str):
201 def interval_pretty_printer(interval: Interval, unit: str, multiplier: float) -> str:
282 def dict_pretty_printer(dict_data: List[Dict[str, Union[str, Tuple[str]]]]) -> Callable[[Union[str,…
286 def pretty_print(s: Union[str, Tuple[str]]) -> str:
296 def determine_column_pretty_printer(pretty_printer_definition: Dict[str, Any]) -> DimensionPrettyPr…
305 def determine_row_pretty_printer(pretty_printer_definition: Dict[str, Any]) -> DimensionPrettyPrint…
308 def determine_row_sort_key(pretty_printer_definition: Dict[str, Any]) -> Callable[[Any], Any]:
315 def determine_value_pretty_printer(unit: str) -> IntervalPrettyPrinter: