Home
last modified time | relevance | path

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

/third_party/rust/crates/aho-corasick/src/
Dahocorasick.rs850 StreamChunk::NonMatch { bytes, .. } => { in stream_replace_all_with()
853 StreamChunk::Match { bytes, mat } => { in stream_replace_all_with()
1304 Some(Ok(StreamChunk::NonMatch { .. })) => {} in next()
1305 Some(Ok(StreamChunk::Match { mat, .. })) => { in next()
1356 enum StreamChunk<'r> { enum
1391 fn next(&mut self) -> Option<io::Result<StreamChunk>> { in next() argument
1397 return Some(Ok(StreamChunk::Match { bytes, mat })); in next()
1403 return Some(Ok(StreamChunk::NonMatch { bytes })); in next()
1428 let chunk = StreamChunk::NonMatch { bytes }; in next()
1470 let chunk = StreamChunk::NonMatch { bytes }; in next()