/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | InputMethodUtils.java | 798 String imeId = subtypeSplitter.next(); in buildInputMethodsAndSubtypeList() local 802 imsList.add(new Pair<>(imeId, subtypeHashes)); in buildInputMethodsAndSubtypeList() 1039 String imeId = ime.first; in saveSubtypeHistory() local 1049 builder.append(imeId).append(INPUT_METHOD_SUBTYPE_SEPARATOR).append( in saveSubtypeHistory() 1056 private void addSubtypeToHistory(String imeId, String subtypeId) { in addSubtypeToHistory() argument 1059 if (ime.first.equals(imeId)) { in addSubtypeToHistory() 1061 Slog.v(TAG, "Subtype found in the history: " + imeId + ", " in addSubtypeToHistory() 1070 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId); in addSubtypeToHistory() 1072 saveSubtypeHistory(subtypeHistory, imeId, subtypeId); in addSubtypeToHistory() 1093 String getLastSubtypeForInputMethodLocked(String imeId) { in getLastSubtypeForInputMethodLocked() argument [all …]
|
D | InputMethodManagerInternal.java | 95 public abstract boolean switchToInputMethod(String imeId, @UserIdInt int userId); in switchToInputMethod() argument 157 public boolean switchToInputMethod(String imeId, int userId) {
|
D | InputMethodManagerService.java | 784 @NonNull String imeId, @StartInputReason int startInputReason, boolean restarting, in StartInputInfo() argument 794 mImeId = imeId; in StartInputInfo() 4494 final String imeId = InputMethodInfo.computeId(ri); in queryInputMethodServicesInternal() local 4496 Slog.w(TAG, "Skipping input method " + imeId in queryInputMethodServicesInternal() 4502 if (DEBUG) Slog.d(TAG, "Checking " + imeId); in queryInputMethodServicesInternal() 4506 additionalSubtypeMap.get(imeId)); in queryInputMethodServicesInternal() 4516 Slog.wtf(TAG, "Unable to load input method " + imeId, e); in queryInputMethodServicesInternal() 5015 private boolean switchToInputMethod(String imeId, @UserIdInt int userId) { in switchToInputMethod() argument 5018 if (!mMethodMap.containsKey(imeId) in switchToInputMethod() 5020 .contains(mMethodMap.get(imeId))) { in switchToInputMethod() [all …]
|
D | MultiClientInputMethodManagerService.java | 207 public boolean switchToInputMethod(String imeId, @UserIdInt int userId) { in Lifecycle() 1188 final String imeId = InputMethodInfo.computeId(ri); in queryInputMethod() local 1190 Slog.e(TAG, imeId + " must have required" in queryInputMethod() 1196 Slog.e(TAG, imeId + " must be pre-installed when Build.IS_DEBUGGABLE is false"); in queryInputMethod() 1203 Slog.wtf(TAG, "Unable to load input method " + imeId, e); in queryInputMethod()
|
/frameworks/base/core/tests/coretests/src/android/view/accessibility/ |
D | AccessibilityServiceConnectionImpl.java | 135 public boolean switchToInputMethod(String imeId) { in switchToInputMethod() argument
|
/frameworks/base/core/java/android/accessibilityservice/ |
D | IAccessibilityServiceConnection.aidl | 99 boolean switchToInputMethod(String imeId); in switchToInputMethod() argument
|
D | AccessibilityService.java | 1777 public boolean switchToInputMethod(@NonNull String imeId) { in switchToInputMethod() argument 1783 return connection.switchToInputMethod(imeId); in switchToInputMethod()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityServiceConnection.java | 272 public boolean switchToInputMethod(String imeId) { in switchToInputMethod() argument 282 result = InputMethodManagerInternal.get().switchToInputMethod(imeId, callingUserId); in switchToInputMethod()
|
D | UiAutomationManager.java | 301 public boolean switchToInputMethod(String imeId) { in switchToInputMethod() argument
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | InputMethodManager.java | 2883 final String imeId = Settings.Secure.getString(contentResolver, in setCurrentInputMethodSubtype() local 2885 if (ComponentName.unflattenFromString(imeId) == null) { in setCurrentInputMethodSubtype() 2891 enabledSubtypes = mService.getEnabledInputMethodSubtypeList(imeId, true); in setCurrentInputMethodSubtype()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
D | AbstractAccessibilityServiceConnectionTest.java | 857 public boolean switchToInputMethod(String imeId) { in switchToInputMethod() argument
|