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

  /packages/inputmethods/PinyinIME/jni/include/
pinyinime.h 145 * @param spl_start Used to return the starting posistions.
147 * elements in spl_start, and spl_start[L] is the posistion after the end of
150 size_t im_get_spl_start_pos(const uint16 *&spl_start);
matrixsearch.h 118 uint16 spl_start[kMaxRowNum]; member in struct:ime_pinyin::__anon35224
426 // spl_start is one more than the return value because the last one is used
428 // For a Pinyin "women", the returned value is 2, spl_start is [0, 2, 5] .
429 size_t get_spl_start(const uint16 *&spl_start);
  /packages/inputmethods/PinyinIME/jni/share/
pinyinime.cpp 124 size_t im_get_spl_start_pos(const uint16 *&spl_start) {
128 return matrix_search->get_spl_start(spl_start);
dicttrie.cpp 860 uint16 spl_start[kMaxLemmaSize + 1]; local
861 spl_start[0] = 0;
867 spl_mtrx[spl_start[pos]] = splids[pos];
871 arg_valid ? splids[pos] : 0, spl_mtrx + spl_start[pos],
872 kMaxLemmaSize * 5 - spl_start[pos]);
875 spl_start[pos + 1] = spl_start[pos] + cand_splids_this;
882 uint16 radix = spl_start[pos + 1] - spl_start[pos];
883 splids[pos] = spl_mtrx[ spl_start[pos] + try_pos / mod % radix]
    [all...]
matrixsearch.cpp 371 uint16 spl_start = c_phrase_.spl_start[splpos]; local
372 uint16 spl_end = c_phrase_.spl_start[splpos + 1];
373 if (ch_pos >= spl_start && ch_pos < spl_end) {
552 c_phrase_.spl_start[c_phrase_.sublma_start[c_phrase_.sublma_num]]);
    [all...]
  /packages/inputmethods/PinyinIME/jni/android/
com_android_inputmethod_pinyin_PinyinDecoderService.cpp 136 const unsigned short *spl_start; local
138 len = im_get_spl_start_pos(spl_start);
160 const unsigned short *spl_start; local
164 len = im_get_spl_start_pos(spl_start);
171 arr_body[i + 1] = spl_start[i];

Completed in 3110 milliseconds