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 194 DicTraverseSession *traverseSession =
196 if (!traverseSession) {
249 dictionary->getSuggestions(pInfo, traverseSession, xCoordinates, yCoordinates,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 105 DicTraverseSession traverseSession = mDicTraverseSessions.get(traverseSessionId);
106 if (traverseSession == null) {
107 traverseSession = new DicTraverseSession(mLocale, mNativeDict, mDictSize);
108 mDicTraverseSessions.put(traverseSessionId, traverseSession);
110 return traverseSession;
194 long traverseSession, int[] xCoordinates, int[] yCoordinates, int[] times,
643 final DicTraverseSession traverseSession = mDicTraverseSessions.valueAt(index);
644 if (traverseSession != null) {
645 traverseSession.close();

Completed in 2926 milliseconds