HomeSort by relevance Sort by last modified time
    Searched defs:traverseSession (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_DicTraverseSession.cpp 31 void *traverseSession = DicTraverseSession::getSessionInstance(env, localeJStr, dictSize);
32 return reinterpret_cast<jlong>(traverseSession);
35 static void latinime_initDicTraverseSession(JNIEnv *env, jclass clazz, jlong traverseSession,
37 DicTraverseSession *ts = reinterpret_cast<DicTraverseSession *>(traverseSession);
53 static void latinime_releaseDicTraverseSession(JNIEnv *env, jclass clazz, jlong traverseSession) {
54 DicTraverseSession *ts = reinterpret_cast<DicTraverseSession *>(traverseSession);
com_android_inputmethod_latin_BinaryDictionary.cpp 192 DicTraverseSession *traverseSession =
194 if (!traverseSession) {
246 dictionary->getSuggestions(pInfo, traverseSession, xCoordinates, yCoordinates,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 99 DicTraverseSession traverseSession = mDicTraverseSessions.get(traverseSessionId);
100 if (traverseSession == null) {
101 traverseSession = new DicTraverseSession(mLocale, mNativeDict, mDictSize);
102 mDicTraverseSessions.put(traverseSessionId, traverseSession);
104 return traverseSession;
189 long traverseSession, int[] xCoordinates, int[] yCoordinates, int[] times,
614 final DicTraverseSession traverseSession = mDicTraverseSessions.valueAt(index);
615 if (traverseSession != null) {
616 traverseSession.close();

Completed in 613 milliseconds