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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidSpellCheckerService.java264 int wordLength, int score) {
282 // mBestSuggestion = new String(word, wordOffset, wordLength);
293 final String wordString = new String(word, wordOffset, wordLength);
263 addWord(char[] word, int[] spaceIndices, int wordOffset, int wordLength, int score) argument
/packages/inputmethods/LatinIME/native/jni/
H A Dcom_android_inputmethod_latin_BinaryDictionary.cpp235 const jsize wordLength = env->GetArrayLength(word); local
236 int codePoints[wordLength];
237 env->GetIntArrayRegion(word, 0, wordLength, codePoints);
238 return dictionary->getProbability(codePoints, wordLength);
285 jsize wordLength = env->GetArrayLength(word); local
286 int codePoints[wordLength];
287 env->GetIntArrayRegion(word, 0, wordLength, codePoints);
288 dictionary->addUnigramWord(codePoints, wordLength, probability);

Completed in 54 milliseconds