/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | __init__.py | 7 match_kind=None, 14 filename, match_kind, get_file_preprocessor, file_maxsizes) 18 match_kind=None, 26 filename, match_kind, get_file_preprocessor, file_maxsizes) 29 def _parse_file(filename, match_kind, get_file_preprocessor, maxsizes): 44 if match_kind is not None and not match_kind(item.kind):
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _parser.py | 330 match_kind=None, 340 match_kind=match_kind, 347 match_kind=None, 360 match_kind=match_kind,
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | ahocorasick.rs | 88 match_kind: MatchKind, 248 /// .match_kind(MatchKind::Standard) // default, not necessary 263 /// .match_kind(MatchKind::LeftmostFirst) 278 /// .match_kind(MatchKind::LeftmostLongest) 306 /// .match_kind(MatchKind::Standard) // default, not necessary 324 /// .match_kind(MatchKind::LeftmostFirst) 342 /// .match_kind(MatchKind::LeftmostLongest) 424 /// .match_kind(MatchKind::LeftmostFirst) 471 /// .match_kind(MatchKind::LeftmostFirst) 518 /// .match_kind(MatchKin 875 pub fn match_kind(&self) -> &MatchKind { match_kind() functions 1031 fn match_kind(&self) -> &MatchKind { match_kind() functions 1744 pub fn match_kind(&mut self, kind: MatchKind) -> &mut AhoCorasickBuilder { match_kind() functions [all...] |
H A D | dfa.rs | 30 pub fn match_kind(&self) -> &MatchKind { in match_kind() functions 31 &self.repr().match_kind in match_kind() 155 fn match_kind(&self) -> &MatchKind { in match_kind() functions 156 &self.repr().match_kind in match_kind() 214 fn match_kind(&self) -> &MatchKind { in match_kind() functions 215 &self.repr().match_kind in match_kind() 275 fn match_kind(&self) -> &MatchKind { in match_kind() functions 276 &self.repr().match_kind in match_kind() 342 fn match_kind(&self) -> &MatchKind { in match_kind() functions 343 &self.repr().match_kind in match_kind() [all...] |
H A D | nfa.rs | 49 match_kind: MatchKind, 220 fn match_kind(&self) -> &MatchKind { in match_kind() functions 221 &self.match_kind in match_kind() 540 match_kind: MatchKind, 550 match_kind: MatchKind::default(), in default() 571 pub fn match_kind(&mut self, kind: MatchKind) -> &mut Builder { in match_kind() functions 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() 1035 fn match_kind(&self) -> MatchKind { match_kind() functions [all...] |
H A D | automaton.rs | 87 fn match_kind(&self) -> &MatchKind; in match_kind() functions 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()
|
H A 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()
|
H A D | prefilter.rs | 286 .map(|kind| packed::Config::new().match_kind(kind).builder()); in new()
|
/third_party/rust/crates/aho-corasick/aho-corasick-debug/ |
H A D | main.rs | 46 match_kind: MatchKind, 96 let match_kind = match parsed.value_of("kind").unwrap() { in parse() 107 match_kind, in parse() 128 .match_kind(self.match_kind) in automaton()
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
H A D | __main__.py | 62 match_kind=None, 67 if match_kind is not None and not match_kind(line.kind):
|
/third_party/rust/crates/aho-corasick/src/packed/ |
H A D | api.rs | 76 /// .match_kind(MatchKind::LeftmostLongest) 139 pub fn match_kind(&mut self, kind: MatchKind) -> &mut Config { in match_kind() functions 544 /// assert_eq!(&MatchKind::LeftmostFirst, searcher.match_kind()); 552 pub fn match_kind(&self) -> &MatchKind { in match_kind() functions 553 self.patterns.match_kind() in match_kind()
|
H A D | pattern.rs | 152 pub fn match_kind(&self) -> &MatchKind { in match_kind() functions
|
/third_party/rust/crates/aho-corasick/bench/src/ |
H A 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/python/Tools/c-analyzer/c_common/ |
H A 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/ |
H A 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/ |
H A 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/regex/src/ |
H A D | exec.rs | 374 .match_kind(MatchKind::LeftmostFirst) in build_aho_corasick()
|