OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:wordCodePoints
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp
290
int
wordCodePoints
[wordLength];
291
env->GetIntArrayRegion(word, 0, wordLength,
wordCodePoints
);
296
CodePointArrayView(
wordCodePoints
, wordLength));
312
int
wordCodePoints
[codePointBufSize];
314
const int nextToken = dictionary->getNextWordAndNextToken(token,
wordCodePoints
,
317
MAX_WORD_LENGTH /* maxLength */,
wordCodePoints
, wordCodePointCount,
320
if (wordCodePointCount > 0 &&
wordCodePoints
[0] == CODE_POINT_BEGINNING_OF_SENTENCE) {
341
int
wordCodePoints
[MAX_WORD_LENGTH];
342
env->GetIntArrayRegion(word, 0, wordLength,
wordCodePoints
);
346
wordCodePoints
, wordLength, MAX_WORD_LENGTH)
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java
386
final int[]
wordCodePoints
= StringUtils.toCodePointArray(word);
388
isBeginningOfSentenceArray,
wordCodePoints
);
483
final int[]
wordCodePoints
= StringUtils.toCodePointArray(word);
485
isBeginningOfSentenceArray,
wordCodePoints
, probability, timestamp)) {
501
final int[]
wordCodePoints
= StringUtils.toCodePointArray(word);
503
isBeginningOfSentenceArray,
wordCodePoints
, isValidWord, count, timestamp)) {
Completed in 460 milliseconds