Searched defs:ThompsonRef (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/nfa/ |
D | compiler.rs | 247 pub struct ThompsonRef { struct 248 start: StateID, 249 end: StateID, 392 fn c(&self, expr: &Hir) -> Result<ThompsonRef> { in c() 433 let ThompsonRef { start, mut end } = match first { in c_concat() localVariable 474 fn c_repetition(&self, rep: &hir::Repetition) -> Result<ThompsonRef> { in c_repetition() 505 ) -> Result<ThompsonRef> { in c_bounded() 563 ) -> Result<ThompsonRef> { in c_at_least() 599 fn c_zero_or_one(&self, expr: &Hir, greedy: bool) -> Result<ThompsonRef> { in c_zero_or_one() 610 fn c_exactly(&self, expr: &Hir, n: u32) -> Result<ThompsonRef> { in c_exactly() [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/nfa/thompson/ |
H A D | compiler.rs | 997 fn c(&self, expr: &Hir) -> Result<ThompsonRef, BuildError> { in c() 1019 fn c_concat<I>(&self, mut it: I) -> Result<ThompsonRef, BuildError> in c_concat() 1024 let ThompsonRef { start, mut end } = match first { in c_concat() localVariable 1048 fn c_alt_slice(&self, exprs: &[Hir]) -> Result<ThompsonRef, BuildError> { in c_alt_slice() 1084 fn c_alt_iter<I>(&self, mut it: I) -> Result<ThompsonRef, BuildError> in c_alt_iter() 1124 ) -> Result<ThompsonRef, BuildError> { in c_cap() 1147 ) -> Result<ThompsonRef, BuildError> { in c_repetition() 1168 ) -> Result<ThompsonRef, BuildError> { in c_bounded() 1233 ) -> Result<ThompsonRef, BuildError> { in c_at_least() 1313 ) -> Result<ThompsonRef, BuildError> { in c_zero_or_one() [all …]
|
H A D | literal_trie.rs | 154 ) -> Result<ThompsonRef, BuildError> { in compile()
|