Lines Matching refs:greedy
391 greedy: false, in c_dotstar()
398 greedy: false, in c_dotstar()
553 ZeroOrOne => self.c_repeat_zero_or_one(&rep.hir, rep.greedy), in c_repeat()
554 ZeroOrMore => self.c_repeat_zero_or_more(&rep.hir, rep.greedy), in c_repeat()
555 OneOrMore => self.c_repeat_one_or_more(&rep.hir, rep.greedy), in c_repeat()
557 self.c_repeat_range(&rep.hir, rep.greedy, min_max, min_max) in c_repeat()
560 self.c_repeat_range_min_or_more(&rep.hir, rep.greedy, min) in c_repeat()
563 self.c_repeat_range(&rep.hir, rep.greedy, min, max) in c_repeat()
571 greedy: bool, in c_repeat_zero_or_one()
579 let split_hole = if greedy { in c_repeat_zero_or_one()
591 greedy: bool, in c_repeat_zero_or_more()
601 let split_hole = if greedy { in c_repeat_zero_or_more()
612 greedy: bool, in c_repeat_one_or_more()
621 let split_hole = if greedy { in c_repeat_one_or_more()
632 greedy: bool, in c_repeat_range_min_or_more()
642 if let Some(patch_rep) = self.c_repeat_zero_or_more(expr, greedy)? { in c_repeat_range_min_or_more()
653 greedy: bool, in c_repeat_range()
696 if greedy { in c_repeat_range()