Lines Matching refs:str
21 fn space_or_line_ending(i: &str) -> IResult<&str, &str> {
25 fn category(i: &str) -> IResult<&str, &str> {
32 fn key_value(i: &str) -> IResult<&str, (&str, &str)> {
42 fn keys_and_values_aggregator(i: &str) -> IResult<&str, Vec<(&str, &str)>> {
46 fn keys_and_values(input: &str) -> IResult<&str, HashMap<&str, &str>> {
53 fn category_and_keys(i: &str) -> IResult<&str, (&str, HashMap<&str, &str>)> {
57 fn categories_aggregator(i: &str) -> IResult<&str, Vec<(&str, HashMap<&str, &str>)>> {
61 fn categories(input: &str) -> IResult<&str, HashMap<&str, HashMap<&str, &str>>> {
79 let mut group = c.benchmark_group("ini str");