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 28 void *traverseSession = DicTraverseWrapper::getDicTraverseSession(env, localeJStr);
29 return reinterpret_cast<jlong>(traverseSession);
32 static void latinime_initDicTraverseSession(JNIEnv *env, jclass clazz, jlong traverseSession,
34 void *ts = reinterpret_cast<void *>(traverseSession);
45 static void latinime_releaseDicTraverseSession(JNIEnv *env, jclass clazz, jlong traverseSession) {
46 void *ts = reinterpret_cast<void *>(traverseSession);
com_android_inputmethod_latin_BinaryDictionary.cpp 138 void *traverseSession = reinterpret_cast<void *>(dicTraverseSession);
189 count = dictionary->getSuggestions(pInfo, traverseSession, xCoordinates, yCoordinates,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 57 DicTraverseSession traverseSession = mDicTraverseSessions.get(traverseSessionId);
58 if (traverseSession == null) {
59 traverseSession = mDicTraverseSessions.get(traverseSessionId);
60 if (traverseSession == null) {
61 traverseSession = new DicTraverseSession(mLocale, mNativeDict);
62 mDicTraverseSessions.put(traverseSessionId, traverseSession);
65 return traverseSession;
95 long traverseSession, int[] xCoordinates, int[] yCoordinates, int[] times,
217 final DicTraverseSession traverseSession = mDicTraverseSessions.valueAt(index);
218 if (traverseSession != null)
    [all...]

Completed in 2600 milliseconds