/third_party/rust/crates/regex/bench/src/ |
D | bench.rs | 136 ($name:ident, $is_match:expr, $re:expr, $haystack:expr) => { 157 if re.is_match(&text) != $is_match { 158 if $is_match { 237 ($name:ident, $is_match:expr, $re:expr, $haystack:expr) => { 251 if re.is_match(&text) != $is_match { 252 if $is_match { 265 ($name:ident, $is_match:expr, $re:expr, $haystack:expr) => { 279 if re.matches(&text).matched_any() != $is_match { 280 if $is_match {
|
/third_party/rust/crates/regex/tests/ |
D | macros.rs | 17 assert_eq!($ismatch, re.is_match(text!($text))); 31 assert!(r.is_match(text)); 116 assert!(set.is_match(text)); 132 assert!(!set.is_match(text));
|
D | crazy.rs | 162 assert!(re.is_match(text!(&*text))); in dfa_handles_pathological_case()
|
/third_party/rust/crates/env_logger/src/filter/ |
D | regex.rs | 20 pub fn is_match(&self, s: &str) -> bool { in is_match() method 21 self.inner.is_match(s) in is_match()
|
D | string.rs | 15 pub fn is_match(&self, s: &str) -> bool { in is_match() method
|
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/test/ |
D | filtration_test.py | 416 is_match = filter.match(InFile("%s/%s.txt" % (tree, file_stem))) 418 self.assertEqual(is_match, expected_match, file_stem)
|
/third_party/icu/icu4c/source/python/icutools/databuilder/test/ |
D | filtration_test.py | 416 is_match = filter.match(InFile("%s/%s.txt" % (tree, file_stem))) 418 self.assertEqual(is_match, expected_match, file_stem)
|
/third_party/rust/crates/aho-corasick/src/ |
D | nfa.rs | 241 self.states[id.to_usize()].is_match() in is_match_state() 312 fn is_match(&self) -> bool { in is_match() method 678 saw_match = saw_match || self.nfa.state(prev).is_match(); in build_trie() 874 if kind.is_leftmost() && it.nfa().state(next).is_match() { in fill_failure_transitions() 914 if kind.is_leftmost() && it.nfa().state(next).is_match() { in fill_failure_transitions() 990 || (self.match_kind().is_leftmost() && self.nfa.start().is_match()) in close_start_state_loop()
|
D | ahocorasick.rs | 183 pub fn is_match<B: AsRef<[u8]>>(&self, haystack: B) -> bool { in is_match() method 1387 has_empty_match_at_end: ac.is_match(""), in new()
|
/third_party/rust/crates/regex/ |
D | PERFORMANCE.md | 49 *amortize the cost of compilation*. Trivially, if a call to `is_match` is 72 MY_REGEX.is_match(text) 118 * is_match 135 **Advice**: Prefer in this order: `is_match`, `find`, `captures`. 139 * is_match 145 `is_match` is fastest because it doesn't actually need to find the start or the 154 the leftmost-first match make this more expensive than `is_match`. 164 the same performance characteristics as `is_match`, except it will return the
|
/third_party/rust/crates/regex/src/ |
D | dfa.rs | 217 pub fn is_match(&self) -> bool { in is_match() method 535 if result.is_match() { in forward_many() 657 state.inst_ptrs().all(|ip| self.prog[ip].is_match()); in exec_at() 1015 debug_assert!(!self.state(next).flags().is_match()); in exec_byte() 1018 if next <= STATE_MAX && self.state(next).flags().is_match() { in exec_byte() 1233 let opt_state = if insts.len() == 1 && !state_flags.is_match() { in cached_state_key() 1694 fn is_match(&self) -> bool { in is_match() method 1795 .field("is_match", &self.is_match()) in fmt()
|
D | re_set.rs | 168 pub fn is_match(&self, text: $text_ty) -> bool {
|
D | prog.rs | 300 pub fn is_match(&self) -> bool { in is_match() method
|
/third_party/rust/crates/syn/examples/lazy-static/example/src/ |
D | main.rs | 19 println!("is_match({:?}): {}", name, USERNAME.is_match(name)); in validate()
|
/third_party/rust/crates/regex/bench/src/ffi/ |
D | onig.rs | 12 pub fn is_match(&self, text: &str) -> bool { in is_match() method
|
D | re2.rs | 30 pub fn is_match(&self, text: &str) -> bool { in is_match() method
|
D | pcre1.rs | 73 pub fn is_match(&self, text: &str) -> bool { in is_match() method
|
D | pcre2.rs | 69 pub fn is_match(&self, text: &str) -> bool { in is_match() method
|
D | tcl.rs | 87 pub fn is_match(&self, text: &Text) -> bool { in is_match() method
|
/third_party/rust/crates/regex/fuzz/fuzz_targets/ |
D | fuzz_regex_match.rs | 18 re.is_match(input);
|
/third_party/rust/crates/bindgen/bindgen/ |
D | regex_set.rs | 90 return set.is_match(s); in matches()
|
/third_party/rust/crates/which-rs/src/ |
D | finder.rs | 112 binary_regex.borrow().is_match(unicode_file_name) in find_re()
|
/third_party/rust/crates/aho-corasick/ |
D | DESIGN.md | 113 if trie.is_match(state_id) { 123 if trie.is_match(state_id) { 171 if fsm.is_match(state_id) { 197 if fsm.is_match(state_id) { 246 if dfa.is_match(state_id) { 254 if dfa.is_match(state_id) {
|
/third_party/node/src/ |
D | node_sockaddr.cc | 321 bool SocketAddress::is_match(const SocketAddress& other) const { in is_match() function in node::SocketAddress 462 return this->address->is_match(*address.get()); in Apply()
|
D | node_sockaddr.h | 102 bool is_match(const SocketAddress& other) const;
|