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.java3715 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked(); in switchToPreviousInputMethod() local
3717 if (lastIme != null) { in switchToPreviousInputMethod()
3718 lastImi = mMethodMap.get(lastIme.first); in switchToPreviousInputMethod()
3724 if (lastIme != null && lastImi != null) { in switchToPreviousInputMethod()
3726 final int lastSubtypeHash = Integer.parseInt(lastIme.second); in switchToPreviousInputMethod()
3732 targetLastImiId = lastIme.first; in switchToPreviousInputMethod()
3770 Slog.d(TAG, "Switch to: " + lastImi.getId() + ", " + lastIme.second in switchToPreviousInputMethod()
3819 final Pair<String, String> lastIme = mSettings.getLastInputMethodAndSubtypeLocked(); in getLastInputMethodSubtype() local
3821 if (lastIme == null || TextUtils.isEmpty(lastIme.first) in getLastInputMethodSubtype()
3822 || TextUtils.isEmpty(lastIme.second)) return null; in getLastInputMethodSubtype()
[all …]