Searched defs:half_id (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/PinyinIME/jni/share/
H A Dspellingtrie.cpp150 bool SpellingTrie::half_full_compatible(uint16 half_id, uint16 full_id) const { argument
153 if (half_fr_full == half_id)
159 char ch_h = kHalfId2Sc_[half_id];
238 uint16 SpellingTrie::half2full_num(uint16 half_id) const {
239 if (NULL == root_ || half_id >= kFullSplIdStart)
241 return h2f_num_[half_id];
244 uint16 SpellingTrie::half_to_full(uint16 half_id, uint16 *spl_id_start) const { argument
245 if (NULL == spl_id_start || NULL == root_ || half_id >= kFullSplIdStart)
248 *spl_id_start = h2f_start_[half_id];
249 return h2f_num_[half_id];
[all...]

Completed in 26 milliseconds