Searched refs:StartText (Results 1 – 11 of 11) sorted by relevance
/third_party/rust/crates/regex/src/ |
D | input.rs | 186 StartText => at.pos() == 0, in is_empty_match() 279 StartText => at.pos() == 0, in is_empty_match()
|
D | compile.rs | 310 Anchor(hir::Anchor::StartText) if self.compiled.is_reverse => { in c() 313 Anchor(hir::Anchor::StartText) => { in c() 314 self.c_empty_look(prog::EmptyLook::StartText) in c() 317 self.c_empty_look(prog::EmptyLook::StartText) in c()
|
D | prog.rs | 347 StartText, enumerator
|
D | dfa.rs | 1089 StartText if flags.start => { in follow_epsilons() 1109 StartLine | EndLine | StartText | EndText in follow_epsilons()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
D | translate.rs | 733 hir::Anchor::StartText in hir_assertion() 740 ast::AssertionKind::StartText => { in hir_assertion() 741 Hir::anchor(hir::Anchor::StartText) in hir_assertion() 1565 assert_eq!(t("^"), hir_anchor(hir::Anchor::StartText)); in assertions() 1567 assert_eq!(t(r"\A"), hir_anchor(hir::Anchor::StartText)); in assertions() 1571 assert_eq!(t(r"(?m)\A"), hir_anchor(hir::Anchor::StartText)); in assertions() 1705 hir_anchor(hir::Anchor::StartText), in flags()
|
D | print.rs | 129 HirKind::Anchor(hir::Anchor::StartText) => { in visit_pre()
|
D | mod.rs | 305 if let Anchor::StartText = anchor { in anchor() 1296 StartText, enumerator
|
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
D | print.rs | 262 StartText => self.wtr.write_str(r"\A"), in fmt_assertion()
|
D | mod.rs | 1108 StartText, enumerator
|
D | parse.rs | 1509 kind: ast::AssertionKind::StartText, in parse_escape() 4207 kind: ast::AssertionKind::StartText, in parse_escape()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/literal/ |
D | mod.rs | 629 if let HirKind::Anchor(hir::Anchor::StartText) = *e.kind() { in prefixes()
|