Searched refs:split_points (Results 1 – 5 of 5) sorted by relevance
/external/rust/crates/textwrap/src/ |
D | splitting.rs | 51 fn split_points(&self, word: &str) -> Vec<usize>; in split_points() method 55 fn split_points(&self, word: &str) -> Vec<usize> { in split_points() method 57 self.deref().split_points(word) in split_points() 62 fn split_points(&self, word: &str) -> Vec<usize> { in split_points() method 63 (*self).split_points(word) in split_points() 85 fn split_points(&self, _: &str) -> Vec<usize> { in split_points() method 106 fn split_points(&self, word: &str) -> Vec<usize> { in split_points() method 136 fn split_points(&self, word: &str) -> Vec<usize> { in split_points() method
|
D | core.rs | 407 let mut split_points = options.splitter.split_points(&word).into_iter(); in split_words() localVariable 409 if let Some(idx) = split_points.next() { in split_words() 860 fn split_points(&self, _: &str) -> Vec<usize> { in split_words_adds_penalty() method
|
D | lib.rs | 1180 opt_usize.splitter.split_points("hello-world"), in options_agree_with_usize() 1181 opt_options.splitter.split_points("hello-world") in options_agree_with_usize()
|
/external/libtextclassifier/native/annotator/ |
D | feature-processor.cc | 93 std::vector<UnicodeText::const_iterator> split_points; in SplitTokensOnSelectionBoundaries() local 98 split_points.push_back(last_start); in SplitTokensOnSelectionBoundaries() 105 split_points.push_back(last_start); in SplitTokensOnSelectionBoundaries() 108 if (!split_points.empty()) { in SplitTokensOnSelectionBoundaries() 111 if (split_points.back() != token_word.end()) { in SplitTokensOnSelectionBoundaries() 112 split_points.push_back(token_word.end()); in SplitTokensOnSelectionBoundaries() 118 for (const auto& split_point : split_points) { in SplitTokensOnSelectionBoundaries()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_fs.cpp | 2000 bool *split_points = new bool[reg_count]; in split_virtual_grfs() local 2001 memset(split_points, 0, reg_count * sizeof(*split_points)); in split_virtual_grfs() 2008 split_points[reg + j] = true; in split_virtual_grfs() 2015 split_points[reg + j] = true; in split_virtual_grfs() 2035 split_points[reg + j] = false; in split_virtual_grfs() 2041 split_points[reg + j] = false; in split_virtual_grfs() 2052 assert(split_points[reg] == false); in split_virtual_grfs() 2064 if (split_points[reg]) { in split_virtual_grfs() 2117 delete[] split_points; in split_virtual_grfs()
|