OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:py_len
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/PinyinIME/jni/android/
com_android_inputmethod_pinyin_PinyinDecoderService.cpp
130
size_t
py_len
;
local
131
const char *py = im_get_sps_str(&
py_len
); //
py_len
gets decoded length
134
py_len
= strlen(py);
141
for (i = 0; i <
py_len
; i++)
151
size_t
py_len
;
local
152
const char *py = im_get_sps_str(&
py_len
); //
py_len
gets decoded length
155
py_len
= strlen(py);
156
return
py_len
;
[
all
...]
/packages/inputmethods/PinyinIME/jni/share/
matrixsearch.cpp
419
size_t MatrixSearch::search(const char *py, size_t
py_len
) {
424
if (
py_len
> kMaxRowNum - 1)
425
py_len
= kMaxRowNum - 1;
441
memcpy(pys_ + ch_pos, py + ch_pos,
py_len
- ch_pos);
442
pys_[
py_len
] = '\0';
458
py_len
--;
459
reset_search(
py_len
, false, false, false);
460
pys_[
py_len
] = '\0';
[
all
...]
/packages/inputmethods/PinyinIME/jni/include/
matrixsearch.h
399
size_t search(const char *py, size_t
py_len
);
Completed in 373 milliseconds