/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-1.10.4/testdata/fowler/ |
H A D | basic.toml | 40 anchored = true qkey 48 anchored = true qkey 56 anchored = true qkey 64 anchored = true qkey 72 anchored = true qkey 87 anchored = true qkey 102 anchored = true qkey 110 anchored = true qkey 118 anchored = true qkey 133 anchored = true qkey [all …]
|
H A D | nullsubexpr.toml | 12 anchored = true qkey 20 anchored = true qkey 28 anchored = true qkey 36 anchored = true qkey 44 anchored = true qkey 52 anchored = true qkey 60 anchored = true qkey 68 anchored = true qkey 76 anchored = true qkey 84 anchored = true qkey [all …]
|
H A D | repetition.toml | 54 anchored = true qkey 62 anchored = true qkey 84 anchored = true qkey 106 anchored = true qkey 114 anchored = true qkey 122 anchored = true qkey 137 anchored = true qkey 145 anchored = true qkey 160 anchored = true qkey 168 anchored = true qkey [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-1.10.4/testdata/ |
H A D | utf8.toml | 135 name = "empty-utf8yes-anchored" 139 anchored = true qkey 145 name = "empty-utf8yes-anchored-overlapping" 149 anchored = true qkey 156 # result, except for the fact that since this is an anchored search and we 158 # none are found. Because it's anchored, matches will be reported so long as 159 # they are directly adjacent. Since with UTF-8 mode the next anchored search 163 name = "empty-utf8no-anchored" 167 anchored = true qkey 173 # Note that overlapping anchored searches are a little weird, and it's not [all …]
|
H A D | anchored.toml | 1 # These tests are specifically geared toward searches with 'anchored = true'. 6 # Note that "anchored" in this context does not mean "^". Anchored searches are 8 # be at the start of the haystack. That's why anchored searches---and there are 19 anchored = true qkey 32 anchored = true qkey 44 anchored = true qkey 55 anchored = true qkey 63 anchored = true qkey 70 anchored = true qkey 73 # Tests that '.c' doesn't match 'abc' when performing an anchored search from [all …]
|
H A D | misc.toml | 14 name = "ascii-literal-anchored" 18 anchored = true qkey 21 name = "ascii-literal-anchored-not" 25 anchored = true qkey
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/dfa/ |
H A D | determinize.rs | 368 anchored: Anchored, in add_start_group() 371 let nfa_start = match anchored { in add_start_group() 397 self.dfa.set_start_state(anchored, Start::NonWordByte, id); in add_start_group() 403 self.dfa.set_start_state(anchored, Start::WordByte, id); in add_start_group() 407 self.dfa.set_start_state(anchored, Start::WordByte, id); in add_start_group() 413 self.dfa.set_start_state(anchored, Start::Text, id); in add_start_group() 414 self.dfa.set_start_state(anchored, Start::LineLF, id); in add_start_group() 415 self.dfa.set_start_state(anchored, Start::LineCR, id); in add_start_group() 417 anchored, in add_start_group() 423 self.dfa.set_start_state(anchored, Start::Text, id); in add_start_group() [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/ |
H A D | tests.rs | 654 (anchored, $name:ident, $collection:expr, $kind:ident, $with:expr) => { 660 let input = Input::new(test.haystack).anchored(Anchored::Yes); 1040 anchored, 1049 anchored, 1059 anchored, 1069 anchored, 1078 anchored, 1087 anchored, 1096 anchored, 1106 anchored, [all …]
|
H A D | transducer.rs | 51 let input = Input::new("").anchored(AcAnchored::No); in new() 72 let input = Input::new("").anchored(AcAnchored::No); in start() 154 let input = Input::new("").anchored(AcAnchored::Yes); in new() 175 let input = Input::new("").anchored(AcAnchored::Yes); in start() 246 fn anchored() { in anchored() function
|
/aosp_15_r20/external/rust/android-crates-io/crates/bstr/scripts/ |
D | generate-unicode-data | 34 --sparse --minimize --anchored --state-size 2 \ 42 --sparse --minimize --anchored --state-size 2 \ 53 --sparse --minimize --anchored --state-size 4 \ 65 --sparse --anchored --state-size 4 \ 78 --classes --minimize --anchored --premultiply --state-size 1 \ 96 --anchored --classes --premultiply --minimize --state-size 1 \ 104 --anchored --classes --premultiply --minimize --state-size 2 \
|
/aosp_15_r20/external/rust/android-crates-io/crates/aho-corasick/src/ |
D | automaton.rs | 90 fn anchored(&self) -> bool; in anchored() method 244 *state_id != dead_id() || self.anchored(), in standard_find_at_imp() 303 if self.anchored() && at > 0 && *state_id == self.start_state() { in leftmost_find_at_imp() 342 last_match.is_some() || self.anchored(), in leftmost_find_at_imp() 401 if self.anchored() && at > 0 { in leftmost_find_at_no_state_imp() 409 debug_assert!(!self.anchored()); in leftmost_find_at_no_state_imp() 457 last_match.is_some() || self.anchored(), in leftmost_find_at_no_state_imp() 483 if self.anchored() && at > 0 && *state_id == self.start_state() { in overlapping_find_at() 520 if self.anchored() && at > 0 { in earliest_find_at()
|
D | nfa.rs | 64 anchored: bool, field 196 fail: if self.anchored { dead_id() } else { self.start_id }, in add_dense_state() 209 fail: if self.anchored { dead_id() } else { self.start_id }, in add_sparse_state() 224 fn anchored(&self) -> bool { in anchored() method 225 self.anchored in anchored() 542 anchored: bool, field 552 anchored: false, in default() 586 pub fn anchored(&mut self, yes: bool) -> &mut Builder { in anchored() method 587 self.anchored = yes; in anchored() 621 anchored: builder.anchored, in new() [all …]
|
D | dfa.rs | 159 fn anchored(&self) -> bool { in anchored() method 160 self.repr().anchored in anchored() 218 fn anchored(&self) -> bool { in anchored() method 219 self.repr().anchored in anchored() 279 fn anchored(&self) -> bool { in anchored() method 280 self.repr().anchored in anchored() 346 fn anchored(&self) -> bool { in anchored() method 347 self.repr().anchored in anchored() 401 anchored: bool, field 634 anchored: nfa.anchored(), in build()
|
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/ |
D | dense.rs | 929 anchored: bool, field 992 anchored: true, in empty_with_byte_classes() 1005 pub fn anchored(mut self, yes: bool) -> Repr<Vec<S>, S> { in anchored() method 1006 self.anchored = yes; in anchored() 1032 anchored: self.anchored, in as_ref() 1045 anchored: self.anchored, in to_owned() 1095 self.anchored in is_anchored() 1185 anchored: self.anchored, in to_sized() 1267 if self.anchored { in to_bytes() 1389 anchored: opts & MASK_ANCHORED > 0, in from_bytes() [all …]
|
D | sparse.rs | 618 anchored: bool, field 637 anchored: self.anchored, in as_ref() 649 anchored: self.anchored, in to_owned() 703 self.anchored in is_anchored() 738 anchored: self.anchored, in to_sized() 819 if self.anchored { in to_bytes() 920 anchored: opts & dense::MASK_ANCHORED > 0, in from_bytes() 978 anchored: dfa.is_anchored(), in from_dense_sized()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/util/ |
H A D | start.rs | 123 anchored: Anchored, field 132 Config { anchored: Anchored::No, look_behind: None } in new() 146 Config { look_behind, anchored: input.get_anchored() } in from_input_forward() 157 Config { look_behind, anchored: input.get_anchored() } in from_input_reverse() 177 pub fn anchored(mut self, mode: Anchored) -> Config { in anchored() method 178 self.anchored = mode; in anchored() 189 self.anchored in get_anchored()
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/re2/re2/testing/ |
D | backtrack.cc | 59 bool anchored, bool longest, 100 bool anchored, bool longest, in Search() argument 110 anchored_ = anchored | prog_->anchor_start(); in Search() 266 bool anchored = anchor == kAnchored; in UnsafeSearchBacktrack() local 268 if (!b.Search(text, context, anchored, longest, match, nmatch)) in UnsafeSearchBacktrack()
|
/aosp_15_r20/external/regex-re2/re2/testing/ |
H A D | backtrack.cc | 59 bool anchored, bool longest, 104 bool anchored, bool longest, in Search() argument 114 anchored_ = anchored | prog_->anchor_start(); in Search() 263 bool anchored = anchor == kAnchored; in UnsafeSearchBacktrack() local 265 if (!b.Search(text, context, anchored, longest, match, nmatch)) in UnsafeSearchBacktrack()
|
/aosp_15_r20/external/cronet/third_party/re2/src/re2/testing/ |
H A D | backtrack.cc | 58 bool Search(absl::string_view text, absl::string_view context, bool anchored, 99 bool anchored, bool longest, in Search() argument 109 anchored_ = anchored | prog_->anchor_start(); in Search() 263 bool anchored = anchor == kAnchored; in UnsafeSearchBacktrack() local 265 if (!b.Search(text, context, anchored, longest, match, nmatch)) in UnsafeSearchBacktrack()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/util/ |
H A D | search.rs | 86 anchored: Anchored, field 97 anchored: Anchored::No, in new() 252 pub fn anchored(mut self, mode: Anchored) -> Input<'h> { in anchored() method 459 self.anchored = mode; in set_anchored() 590 self.anchored in get_anchored() 640 .field("anchored", &self.anchored) in fmt()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/tests/ |
H A D | lib.rs | 79 let anchored = if test.anchored() { Anchored::Yes } else { Anchored::No }; in create_input() localVariable 82 .anchored(anchored) in create_input()
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | dfa.cc | 92 bool anchored, bool want_earliest_match, bool run_forward, 245 anchored(false), in SearchParams() 257 bool anchored; member 1668 if (params->anchored) in AnalyzeSearch() 1691 !params->anchored && in AnalyzeSearch() 1698 params->anchored, params->run_forward, flags, in AnalyzeSearch() 1719 params->anchored ? prog_->start() : prog_->start_unanchored(), in AnalyzeSearchHelper() 1733 bool anchored, in Search() argument 1749 std::string(text).c_str(), anchored, want_earliest_match, run_forward, kind_); in Search() 1754 params.anchored = anchored; in Search() [all …]
|
/aosp_15_r20/external/cronet/third_party/re2/src/re2/ |
H A D | dfa.cc | 93 bool Search(absl::string_view text, absl::string_view context, bool anchored, 239 anchored(false), in SearchParams() 251 bool anchored; member 1686 if (params->anchored) in AnalyzeSearch() 1709 !params->anchored && in AnalyzeSearch() 1716 params->anchored, params->run_forward, flags, in AnalyzeSearch() 1737 params->anchored ? prog_->start() : prog_->start_unanchored(), in AnalyzeSearchHelper() 1750 bool anchored, bool want_earliest_match, bool run_forward, in Search() argument 1762 text, anchored, want_earliest_match, run_forward, kind_); in Search() 1767 params.anchored = anchored; in Search() [all …]
|
/aosp_15_r20/external/regex-re2/re2/ |
H A D | dfa.cc | 98 bool anchored, bool want_earliest_match, bool run_forward, 254 anchored(false), in SearchParams() 266 bool anchored; member 1678 if (params->anchored) in AnalyzeSearch() 1696 params->anchored, params->run_forward, flags, in AnalyzeSearch() 1720 params->anchored ? prog_->start() : prog_->start_unanchored(), in AnalyzeSearchHelper() 1744 params->anchored || in AnalyzeSearchHelper() 1756 bool anchored, in Search() argument 1772 string(text).c_str(), anchored, want_earliest_match, in Search() 1778 params.anchored = anchored; in Search() [all …]
|
/aosp_15_r20/external/flashrom/ |
H A D | dmi.c | 437 bool anchored = false; in dmi_compare() local 446 anchored = true; in dmi_compare() 458 if (anchored && (valuelen != patternlen)) in dmi_compare() 463 anchored = true; in dmi_compare() 466 if (anchored) in dmi_compare()
|