Searched refs:str_buf (Results 1 - 9 of 9) sorted by relevance

/packages/inputmethods/PinyinIME/jni/include/
H A Datomdictbase.h146 * @param str_buf The buffer to return the Chinese string.
150 virtual uint16 get_lemma_str(LemmaIdType id_lemma, char16 *str_buf,
H A Ddictlist.h94 uint16 get_lemma_str(LemmaIdType id_hz, char16 *str_buf, uint16 str_max);
H A Ddicttrie.h194 uint16 get_lemma_str(LemmaIdType id_lemma, char16 *str_buf, uint16 str_max);
H A Dmatrixsearch.h293 uint16 get_lemma_str(LemmaIdType id_lemma, char16 *str_buf, uint16 str_max);
H A Duserdict.h53 uint16 get_lemma_str(LemmaIdType id_lemma, char16* str_buf,
/packages/inputmethods/PinyinIME/jni/share/
H A Ddictlist.cpp286 uint16 DictList::get_lemma_str(LemmaIdType id_lemma, char16 *str_buf, argument
288 if (!initialized_ || id_lemma >= start_id_[kMaxLemmaSize] || NULL == str_buf
301 str_buf[len] = buf[len];
303 str_buf[i+1] = (char16)'\0';
H A Dmatrixsearch.cpp1780 uint16 MatrixSearch::get_lemma_str(LemmaIdType id_lemma, char16 *str_buf, argument
1785 str_len = dict_trie_->get_lemma_str(id_lemma, str_buf, str_max);
1788 str_len = user_dict_->get_lemma_str(id_lemma, str_buf, str_max);
1791 str_buf[0] = static_cast<char16>('\0');
1799 utf16_strncpy(str_buf, c_phrase_.chn_str, str_len);
1800 str_buf[str_len] = (char16)'\0';
H A Ddicttrie.cpp848 uint16 DictTrie::get_lemma_str(LemmaIdType id_lemma, char16 *str_buf, argument
850 return dict_list_->get_lemma_str(id_lemma, str_buf, str_max);
H A Duserdict.cpp609 uint16 UserDict::get_lemma_str(LemmaIdType id_lemma, char16* str_buf, argument
621 str_buf[i] = str[i];
623 str_buf[i] = 0;

Completed in 98 milliseconds