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

/packages/inputmethods/PinyinIME/jni/share/
H A Ddictbuilder.cpp661 void DictBuilder::format_spelling_str(char *spl_str) { argument
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[
[all...]
H A Dspellingtrie.cpp355 const char* SpellingTrie::get_ym_str(const char *spl_str) { argument
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 local
[all...]

Completed in 134 milliseconds