/third_party/python/Tools/c-analyzer/c_parser/ |
D | __init__.py | 6 match_kind=None, argument 11 yield from _parse_file(filename, match_kind, get_file_preprocessor) 15 match_kind=None, argument 21 yield from _parse_file(filename, match_kind, get_file_preprocessor) 24 def _parse_file(filename, match_kind, get_file_preprocessor): argument 34 if match_kind is not None and not match_kind(item.kind):
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | _parser.py | 290 match_kind=None, argument 300 match_kind=match_kind, 306 match_kind=None, argument 319 match_kind=match_kind,
|
/third_party/rust/crates/aho-corasick/src/ |
D | nfa.rs | 49 match_kind: MatchKind, field 220 fn match_kind(&self) -> &MatchKind { in match_kind() method 221 &self.match_kind in match_kind() 540 match_kind: MatchKind, field 550 match_kind: MatchKind::default(), in default() 571 pub fn match_kind(&mut self, kind: MatchKind) -> &mut Builder { in match_kind() method 572 self.match_kind = kind; in match_kind() 612 prefilter: prefilter::Builder::new(builder.match_kind) in new() 615 match_kind: builder.match_kind, in new() 679 if self.builder.match_kind.is_leftmost_first() && saw_match { in build_trie() [all …]
|
D | dfa.rs | 30 pub fn match_kind(&self) -> &MatchKind { in match_kind() method 31 &self.repr().match_kind in match_kind() 155 fn match_kind(&self) -> &MatchKind { in match_kind() method 156 &self.repr().match_kind in match_kind() 214 fn match_kind(&self) -> &MatchKind { in match_kind() method 215 &self.repr().match_kind in match_kind() 275 fn match_kind(&self) -> &MatchKind { in match_kind() method 276 &self.repr().match_kind in match_kind() 342 fn match_kind(&self) -> &MatchKind { in match_kind() method 343 &self.repr().match_kind in match_kind() [all …]
|
D | ahocorasick.rs | 88 match_kind: MatchKind, field 875 pub fn match_kind(&self) -> &MatchKind { in match_kind() method 876 self.imp.match_kind() in match_kind() 951 self.match_kind.supports_overlapping() in supports_overlapping() 981 self.match_kind.supports_stream() in supports_stream() 1031 fn match_kind(&self) -> &MatchKind { in match_kind() method 1033 Imp::NFA(ref nfa) => nfa.match_kind(), in match_kind() 1034 Imp::DFA(ref dfa) => dfa.match_kind(), in match_kind() 1612 let match_kind = nfa.match_kind().clone(); in build_with_size() localVariable 1619 Ok(AhoCorasick { imp, match_kind }) in build_with_size() [all …]
|
D | automaton.rs | 87 fn match_kind(&self) -> &MatchKind; in match_kind() method 302 debug_assert!(self.match_kind().is_leftmost()); in leftmost_find_at_imp() 400 debug_assert!(self.match_kind().is_leftmost()); in leftmost_find_at_no_state_imp() 541 match *self.match_kind() { in find_at() 562 match *self.match_kind() { in find_at_no_state()
|
D | tests.rs | 637 .match_kind(MatchKind::$kind) 653 .match_kind(MatchKind::$kind) 668 .match_kind(MatchKind::$kind) 1080 .match_kind(MatchKind::LeftmostFirst) in stream_not_allowed_leftmost_first() 1089 .match_kind(MatchKind::LeftmostLongest) in stream_not_allowed_leftmost_longest() 1098 .match_kind(MatchKind::LeftmostFirst) in overlapping_not_allowed_leftmost_first() 1107 .match_kind(MatchKind::LeftmostLongest) in overlapping_not_allowed_leftmost_longest()
|
D | prefilter.rs | 286 .map(|kind| packed::Config::new().match_kind(kind).builder()); in new()
|
/third_party/rust/crates/aho-corasick/aho-corasick-debug/ |
D | main.rs | 46 match_kind: MatchKind, field 96 let match_kind = match parsed.value_of("kind").unwrap() { in parse() localVariable 107 match_kind, in parse() 128 .match_kind(self.match_kind) in automaton()
|
/third_party/rust/crates/aho-corasick/bench/src/ |
D | bench.rs | 38 .match_kind(MatchKind::LeftmostFirst) in define_aho_corasick() 49 .match_kind(MatchKind::LeftmostFirst) in define_aho_corasick() 103 .match_kind(kind) in define_aho_corasick_dfa() 116 .match_kind(kind) in define_aho_corasick_dfa() 129 .match_kind(kind) in define_aho_corasick_dfa() 142 .match_kind(kind) in define_aho_corasick_dfa()
|
/third_party/rust/crates/aho-corasick/src/packed/ |
D | tests.rs | 408 c.match_kind(MatchKind::LeftmostLongest); 426 c.force_teddy(true).match_kind(MatchKind::LeftmostLongest); 447 c.force_teddy(true).match_kind(MatchKind::LeftmostLongest); 471 c.force_teddy(true).match_kind(MatchKind::LeftmostLongest); 495 c.force_teddy(true).match_kind(MatchKind::LeftmostLongest); 514 c.force_rabin_karp(true).match_kind(MatchKind::LeftmostLongest);
|
D | api.rs | 139 pub fn match_kind(&mut self, kind: MatchKind) -> &mut Config { in match_kind() method 552 pub fn match_kind(&self) -> &MatchKind { in match_kind() method 553 self.patterns.match_kind() in match_kind()
|
D | pattern.rs | 152 pub fn match_kind(&self) -> &MatchKind { in match_kind() method
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
D | __main__.py | 62 match_kind=None, argument 67 if match_kind is not None and not match_kind(line.kind):
|
/third_party/python/Tools/c-analyzer/c_common/ |
D | scriptutil.py | 382 match_kind = (lambda k: True) 399 def match_kind(kind, *, _excluded=excluded): function 402 def match_kind(kind, *, _included=included): function 404 args.match_kind = match_kind
|
/third_party/rust/crates/regex/src/literal/ |
D | imp.rs | 206 .match_kind(packed::MatchKind::LeftmostFirst) in new() 213 .match_kind(aho_corasick::MatchKind::LeftmostFirst) in new()
|
/third_party/python/Tools/c-analyzer/c_analyzer/ |
D | __main__.py | 110 columns, match_kind, sortkey = info 111 items = (v for v in groupitems if match_kind(v.kind))
|
/third_party/rust/crates/aho-corasick/ |
D | README.md | 146 .match_kind(MatchKind::LeftmostFirst)
|
/third_party/rust/crates/regex/src/ |
D | exec.rs | 374 .match_kind(MatchKind::LeftmostFirst) in build_aho_corasick()
|