Home
last modified time | relevance | path

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

/external/rust/crates/bstr/src/unicode/
Dsentence.rs93 pub struct SentenceIndices<'a> { struct
98 impl<'a> SentenceIndices<'a> { argument
99 pub(crate) fn new(bs: &'a [u8]) -> SentenceIndices<'a> { in new()
100 SentenceIndices { bs: bs, forward_index: 0 } in new()
128 impl<'a> Iterator for SentenceIndices<'a> { implementation
Dmod.rs2 pub use self::sentence::{SentenceIndices, Sentences};
/external/rust/crates/bstr/src/
Dlib.rs401 GraphemeIndices, Graphemes, SentenceIndices, Sentences, WordIndices,
Dext_slice.rs20 SentenceIndices, Sentences, WordIndices, Words, WordsWithBreakIndices,
2027 fn sentence_indices(&self) -> SentenceIndices { in sentence_indices() argument
2028 SentenceIndices::new(self.as_bytes()) in sentence_indices()