Home
last modified time | relevance | path

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

/external/rust/crates/unicode-segmentation/src/
Dtest.rs150 s.split_word_bounds(), in test_words()
157 s.split_word_bounds().rev(), in test_words()
237 let a = s.split_word_bounds().collect::<Vec<_>>();
238 let mut b = s.split_word_bounds().rev().collect::<Vec<_>>();
244 let a = s.split_word_bounds().collect::<String>();
Dlib.rs189 fn split_word_bounds<'a>(&'a self) -> UWordBounds<'a>; in split_word_bounds() method
284 fn split_word_bounds(&self) -> UWordBounds { in split_word_bounds() method
Dword.rs741 inner: s.split_word_bounds().filter(has_alphanumeric), in new_unicode_words()
/external/rust/crates/unicode-segmentation/benches/
Dword_bounds.rs12 for w in text.split_word_bounds() { in word_bounds()
/external/rust/crates/unicode-segmentation/
DREADME.md23 let w = s.split_word_bounds().collect::<Vec<&str>>();