Lines Matching refs:RepetitionKind
793 ast::RepetitionKind::ZeroOrOne => hir::RepetitionKind::ZeroOrOne, in hir_repetition()
794 ast::RepetitionKind::ZeroOrMore => hir::RepetitionKind::ZeroOrMore, in hir_repetition()
795 ast::RepetitionKind::OneOrMore => hir::RepetitionKind::OneOrMore, in hir_repetition()
796 ast::RepetitionKind::Range(ast::RepetitionRange::Exactly(m)) => { in hir_repetition()
797 hir::RepetitionKind::Range(hir::RepetitionRange::Exactly(m)) in hir_repetition()
799 ast::RepetitionKind::Range(ast::RepetitionRange::AtLeast(m)) => { in hir_repetition()
800 hir::RepetitionKind::Range(hir::RepetitionRange::AtLeast(m)) in hir_repetition()
802 ast::RepetitionKind::Range(ast::RepetitionRange::Bounded( in hir_repetition()
806 hir::RepetitionKind::Range(hir::RepetitionRange::Bounded(m, n)) in hir_repetition()
1220 kind: hir::RepetitionKind::ZeroOrOne, in hir_quest()
1228 kind: hir::RepetitionKind::ZeroOrMore, in hir_star()
1236 kind: hir::RepetitionKind::OneOrMore, in hir_plus()
1244 kind: hir::RepetitionKind::Range(range), in hir_range()