OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxPredictSize
(Results
1 - 10
of
10
) sorted by null
/packages/inputmethods/PinyinIME/jni/share/
pinyinime.cpp
35
char16 predict_buf[kMaxPredictNum][
kMaxPredictSize
+ 1];
159
char16 (*&pre_buf)[
kMaxPredictSize
+ 1]) {
165
if (fixed_len >
kMaxPredictSize
) {
166
fixed_ptr += fixed_len -
kMaxPredictSize
;
167
fixed_len =
kMaxPredictSize
;
searchutility.cpp
170
(static_cast<const NPredictItem*>(p2))->pre_hzs,
kMaxPredictSize
));
195
kMaxPredictSize
) != 0) {
dictlist.cpp
236
assert(hzs_len <=
kMaxPredictSize
&& hzs_len > 0);
246
for (uint16 pre_len = 1; pre_len <=
kMaxPredictSize
+ 1 - hzs_len;
272
kMaxPredictSize
) == 0)
matrixsearch.cpp
[
all
...]
userdict.cpp
671
(nchar <
kMaxPredictSize
? (nchar << 1) : (
kMaxPredictSize
<< 1))
676
if ((cpy_len >> 1) <
kMaxPredictSize
) {
[
all
...]
/packages/inputmethods/PinyinIME/jni/include/
pinyinime.h
194
char16 (*&pre_buf)[
kMaxPredictSize
+ 1]);
dictdef.h
62
const size_t
kMaxPredictSize
= (kMaxLemmaSize - 1);
searchutility.h
50
char16 pre_hzs[
kMaxPredictSize
];
matrixsearch.h
356
char16 predict_buf[][
kMaxPredictSize
+ 1],
451
char16 predict_buf[][
kMaxPredictSize
+ 1],
/packages/inputmethods/PinyinIME/jni/android/
com_android_inputmethod_pinyin_PinyinDecoderService.cpp
37
static char16 (*predict_buf)[
kMaxPredictSize
+ 1] = NULL;
220
char16 fixed_buf[
kMaxPredictSize
+ 1];
222
if (fixed_len >
kMaxPredictSize
) {
223
fixed_ptr += fixed_len -
kMaxPredictSize
;
224
fixed_len =
kMaxPredictSize
;
Completed in 40 milliseconds