Home
last modified time | relevance | path

Searched refs:lastIme (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodManagerService.java3718 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked(); in switchToPreviousInputMethod() local
3720 if (lastIme != null) { in switchToPreviousInputMethod()
3721 lastImi = mMethodMap.get(lastIme.first); in switchToPreviousInputMethod()
3727 if (lastIme != null && lastImi != null) { in switchToPreviousInputMethod()
3729 final int lastSubtypeHash = Integer.parseInt(lastIme.second); in switchToPreviousInputMethod()
3735 targetLastImiId = lastIme.first; in switchToPreviousInputMethod()
3773 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second in switchToPreviousInputMethod()
3822 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked(); in getLastInputMethodSubtype() local
3824 if (lastIme == null || TextUtils.isEmpty(lastIme.first) in getLastInputMethodSubtype()
3825 || TextUtils.isEmpty(lastIme.second)) return null; in getLastInputMethodSubtype()
[all …]