Home
last modified time | relevance | path

Searched refs:match_kind (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Tools/c-analyzer/c_parser/
D__init__.py6 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.py290 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/
Dnfa.rs49 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 …]
Ddfa.rs30 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 …]
Dahocorasick.rs88 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 …]
Dautomaton.rs87 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()
Dtests.rs637 .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()
Dprefilter.rs286 .map(|kind| packed::Config::new().match_kind(kind).builder()); in new()
/third_party/rust/crates/aho-corasick/aho-corasick-debug/
Dmain.rs46 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/
Dbench.rs38 .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/
Dtests.rs408 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);
Dapi.rs139 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()
Dpattern.rs152 pub fn match_kind(&self) -> &MatchKind { in match_kind() method
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/
D__main__.py62 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/
Dscriptutil.py382 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/
Dimp.rs206 .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__.py110 columns, match_kind, sortkey = info
111 items = (v for v in groupitems if match_kind(v.kind))
/third_party/rust/crates/aho-corasick/
DREADME.md146 .match_kind(MatchKind::LeftmostFirst)
/third_party/rust/crates/regex/src/
Dexec.rs374 .match_kind(MatchKind::LeftmostFirst) in build_aho_corasick()