Searched refs:EndText (Results 1 – 11 of 11) sorted by relevance
/third_party/rust/crates/regex/src/ |
D | input.rs | 187 EndText => at.pos() == self.len(), in is_empty_match() 280 EndText => at.pos() == self.len(), in is_empty_match()
|
D | compile.rs | 311 self.c_empty_look(prog::EmptyLook::EndText) in c() 316 Anchor(hir::Anchor::EndText) if self.compiled.is_reverse => { in c() 319 Anchor(hir::Anchor::EndText) => { in c() 320 self.c_empty_look(prog::EmptyLook::EndText) in c()
|
D | prog.rs | 349 EndText, enumerator
|
D | dfa.rs | 1092 EndText if flags.end => { in follow_epsilons() 1109 StartLine | EndLine | StartText | EndText in follow_epsilons()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
D | print.rs | 132 HirKind::Anchor(hir::Anchor::EndText) => { in visit_pre()
|
D | translate.rs | 738 hir::Anchor::EndText in hir_assertion() 743 ast::AssertionKind::EndText => Hir::anchor(hir::Anchor::EndText), in hir_assertion() 1566 assert_eq!(t("$"), hir_anchor(hir::Anchor::EndText)); in assertions() 1568 assert_eq!(t(r"\z"), hir_anchor(hir::Anchor::EndText)); in assertions() 1572 assert_eq!(t(r"(?m)\z"), hir_anchor(hir::Anchor::EndText)); in assertions()
|
D | mod.rs | 310 if let Anchor::EndText = anchor { in anchor() 1299 EndText, enumerator
|
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
D | print.rs | 263 EndText => self.wtr.write_str(r"\z"), in fmt_assertion()
|
D | mod.rs | 1110 EndText, enumerator
|
D | parse.rs | 1513 kind: ast::AssertionKind::EndText, in parse_escape() 4214 kind: ast::AssertionKind::EndText, in parse_escape()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/literal/ |
D | mod.rs | 705 if let HirKind::Anchor(hir::Anchor::EndText) = *e.kind() { in suffixes()
|