Home
last modified time | relevance | path

Searched refs:SlowMatcher (Results 1 – 13 of 13) sorted by relevance

/dports/textproc/ripgrep-all/ripgrep-all-0.9.6/src/adapters/
H A Ddecompress.rs30 .map(|s| SlowMatcher::MimeType(s.to_string()))
49 fn decompress_any<'a, R>(reason: &SlowMatcher, inp: &'a mut R) -> Fallible<Box<dyn Read + 'a>> in decompress_any() argument
54 use SlowMatcher::*; in decompress_any()
94 fn adapt(&self, ai: AdaptInfo, detection_reason: &SlowMatcher) -> Fallible<()> { in adapt()
H A Dzip.rs23 slow_matchers: Some(vec![SlowMatcher::MimeType("application/zip".to_owned())])
50 fn adapt(&self, ai: AdaptInfo, _detection_reason: &SlowMatcher) -> Fallible<()> { in adapt()
H A Dsqlite.rs23 slow_matchers: Some(vec![SlowMatcher::MimeType(
61 fn adapt(&self, ai: AdaptInfo, _detection_reason: &SlowMatcher) -> Fallible<()> { in adapt()
H A Dpdfpages.rs23 slow_matchers: Some(vec![SlowMatcher::MimeType(
46 fn adapt(&self, ai: AdaptInfo, _detection_reason: &SlowMatcher) -> Fallible<()> { in adapt()
H A Dpoppler.rs20 slow_matchers: Some(vec![SlowMatcher::MimeType("application/pdf".to_owned())])
H A Dtar.rs39 fn adapt(&self, ai: AdaptInfo, _detection_reason: &SlowMatcher) -> Fallible<()> { in adapt()
H A Dffmpeg.rs51 fn adapt(&self, ai: AdaptInfo, _detection_reason: &SlowMatcher) -> Fallible<()> { in adapt()
H A Dspawning.rs111 fn adapt(&self, ai: AdaptInfo, _detection_reason: &SlowMatcher) -> Fallible<()> { in adapt()
/dports/textproc/ripgrep-all/ripgrep-all-0.9.6/src/
H A Dadapters.rs35 pub slow_matchers: Option<Vec<SlowMatcher>>,
42 ) -> Box<dyn Iterator<Item = Cow<SlowMatcher>> + 'a> { in get_matchers()
48 .map(|e| Cow::Owned(SlowMatcher::Fast(e.clone()))), in get_matchers()
61 fn adapt(&self, a: AdaptInfo, detection_reason: &SlowMatcher) -> Fallible<()>; in adapt()
H A Dmatching.rs27 pub enum SlowMatcher { enum
52 ) -> Fallible<impl Fn(FileMeta) -> Option<(Rc<dyn FileAdapter>, SlowMatcher)>> { in adapter_matcher() argument
60 use SlowMatcher::*; in adapter_matcher()
/dports/textproc/py-whoosh/Whoosh-2.7.4/tests/
H A Dtest_collector.py54 class SlowMatcher(matching.WrappingMatcher): class
61 return SlowMatcher(self.child.matcher(searcher, context))
97 class SlowMatcher(matching.Matcher): class
116 return SlowMatcher()
/dports/textproc/ripgrep-all/ripgrep-all-0.9.6/src/bin/
H A Drga.rs37 SlowMatcher::MimeType(x) => Some(format!("{}", x)), in main()
38 SlowMatcher::Fast(_) => None, in main()
/dports/lang/abcl/abcl-src-1.8.0/src/org/armedbear/lisp/
H A DArgumentListProcessor.java159 matcher = new SlowMatcher(); in ArgumentListProcessor()
453 matcher = new SlowMatcher(); in ArgumentListProcessor()
572 private class SlowMatcher extends ArgumentMatcher { class in ArgumentListProcessor