HomeSort by relevance Sort by last modified time
    Searched refs:spl_str (Results 1 - 4 of 4) sorted by null

  /packages/inputmethods/PinyinIME/jni/share/
spellingtrie.cpp 355 const char* SpellingTrie::get_ym_str(const char *spl_str) {
357 if (is_shengmu_char(*spl_str)) {
358 if ('Z' == *spl_str || 'C' == *spl_str || 'S' == *spl_str)
360 spl_str += 1;
361 if (start_ZCS && 'h' == *spl_str)
362 spl_str += 1;
364 return spl_str;
375 const char *spl_str = spelling_buf_ + spelling_size_ * pos local
    [all...]
dictbuilder.cpp 661 void DictBuilder::format_spelling_str(char *spl_str) {
662 if (NULL == spl_str)
666 while ('\0' != spl_str[pos]) {
667 if (spl_str[pos] >= 'a' && spl_str[pos] <= 'z')
668 spl_str[pos] = spl_str[pos] - 'a' + 'A';
670 if (1 == pos && 'H' == spl_str[pos]) {
671 if ('C' == spl_str[0] || 'S' == spl_str[0] || 'Z' == spl_str[0])
    [all...]
  /packages/inputmethods/PinyinIME/jni/include/
dictbuilder.h 115 void format_spelling_str(char *spl_str);
spellingtrie.h 142 // The caller guaratees spl_str is valid.
143 const char* get_ym_str(const char *spl_str);

Completed in 163 milliseconds