Home
last modified time | relevance | path

Searched refs:is_anchored (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/regex-automata/src/
Ddfa.rs51 fn is_anchored(&self) -> bool; in is_anchored() method
211 if self.is_anchored() && start > 0 { in is_match_at()
236 if self.is_anchored() && start > 0 { in shortest_match_at()
265 if self.is_anchored() && start > 0 { in find_at()
297 if self.is_anchored() && start < bytes.len() { in rfind_at()
346 fn is_anchored(&self) -> bool { in is_anchored() method
347 (**self).is_anchored() in is_anchored()
Dsparse.rs439 fn is_anchored(&self) -> bool { in is_anchored() method
440 self.repr().is_anchored() in is_anchored()
536 fn is_anchored(&self) -> bool { in is_anchored() method
537 self.0.is_anchored() in is_anchored()
597 fn is_anchored(&self) -> bool { in is_anchored() method
598 self.0.is_anchored() in is_anchored()
702 fn is_anchored(&self) -> bool { in is_anchored() method
978 anchored: dfa.is_anchored(), in from_dense_sized()
Ddense.rs570 fn is_anchored(&self) -> bool { in is_anchored() method
571 self.repr().is_anchored() in is_anchored()
699 fn is_anchored(&self) -> bool { in is_anchored() method
700 self.0.is_anchored() in is_anchored()
759 fn is_anchored(&self) -> bool { in is_anchored() method
760 self.0.is_anchored() in is_anchored()
820 fn is_anchored(&self) -> bool { in is_anchored() method
821 self.0.is_anchored() in is_anchored()
873 fn is_anchored(&self) -> bool { in is_anchored() method
874 self.0.is_anchored() in is_anchored()
[all …]
Ddeterminize.rs70 dfa: DFARepr::empty().anchored(nfa.is_anchored()), in new()
84 .anchored(self.nfa.is_anchored()); in with_byte_classes()
/external/rust/crates/regex-automata/src/nfa/
Dmod.rs66 pub fn is_anchored(&self) -> bool { in is_anchored() method
/external/harfbuzz_ng/src/
Dhb-ot-glyf-table.hh265 bool is_anchored () const { return !(flags & ARGS_ARE_XY_VALUES); } in is_anchored() function
323 if (is_anchored ()) tx = ty = 0; in get_transformation()
883 if (item.is_anchored ()) in get_points_var()
/external/pcre/dist2/src/
Dpcre2_compile.c8270 is_anchored(PCRE2_SPTR code, unsigned int bracket_map, compile_block *cb, in is_anchored() function
8283 if (!is_anchored(scode, bracket_map, cb, atomcount, inassert)) in is_anchored()
8294 if (!is_anchored(scode, new_map, cb, atomcount, inassert)) return FALSE; in is_anchored()
8301 if (!is_anchored(scode, bracket_map, cb, atomcount, TRUE)) return FALSE; in is_anchored()
8309 if (!is_anchored(scode, bracket_map, cb, atomcount, inassert)) in is_anchored()
8317 if (!is_anchored(scode, bracket_map, cb, atomcount + 1, inassert)) in is_anchored()
10322 is_anchored(codestart, 0, &cb, 0, FALSE)) in pcre2_compile()