Searched refs:EndText (Results 1 – 11 of 11) sorted by relevance
/external/rust/crates/regex/src/ |
D | input.rs | 189 EndText => at.pos() == self.len(), in is_empty_match() 282 EndText => at.pos() == self.len(), in is_empty_match()
|
D | compile.rs | 298 self.c_empty_look(prog::EmptyLook::EndText) in c() 303 Anchor(hir::Anchor::EndText) if self.compiled.is_reverse => { in c() 306 Anchor(hir::Anchor::EndText) => { in c() 307 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()
|
/external/rust/crates/regex-syntax/src/hir/ |
D | print.rs | 133 HirKind::Anchor(hir::Anchor::EndText) => { in visit_pre()
|
D | translate.rs | 744 hir::Anchor::EndText in hir_assertion() 749 ast::AssertionKind::EndText => Hir::anchor(hir::Anchor::EndText), in hir_assertion() 1550 assert_eq!(t("$"), hir_anchor(hir::Anchor::EndText)); in assertions() 1552 assert_eq!(t(r"\z"), hir_anchor(hir::Anchor::EndText)); in assertions() 1556 assert_eq!(t(r"(?m)\z"), hir_anchor(hir::Anchor::EndText)); in assertions()
|
D | mod.rs | 310 if let Anchor::EndText = anchor { in anchor() 1295 EndText, enumerator
|
/external/rust/crates/regex-syntax/src/ast/ |
D | print.rs | 264 EndText => self.wtr.write_str(r"\z"), in fmt_assertion()
|
D | mod.rs | 1110 EndText, enumerator
|
D | parse.rs | 1525 kind: ast::AssertionKind::EndText, in parse_escape() 4223 kind: ast::AssertionKind::EndText, in parse_escape()
|
/external/rust/crates/regex-syntax/src/hir/literal/ |
D | mod.rs | 707 if let HirKind::Anchor(hir::Anchor::EndText) = *e.kind() { in suffixes()
|