Home
last modified time | relevance | path

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

/cts/hostsidetests/inputmethodservice/common/src/android/inputmethodservice/cts/common/test/
DShellCommandUtils.java40 public static String setCurrentIme(final String imeId) { in setCurrentIme() argument
41 return "settings put " + SETTING_DEFAULT_IME + " " + imeId; in setCurrentIme()
45 public static String enableIme(final String imeId) { in enableIme() argument
46 return "ime enable " + imeId; in enableIme()
50 public static String disableIme(final String imeId) { in disableIme() argument
51 return "ime disable " + imeId; in disableIme()
/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/ime/
DImeCommandReceiver.java50 void commandSwitchInputMethod(final String imeId); in commandSwitchInputMethod() argument
80 final String imeId = getString1(intent); in onReceive() local
81 mIme.commandSwitchInputMethod(imeId); in onReceive()
90 final String imeId = getString1(intent); in onReceive() local
92 mIme.switchInputMethod(imeId, null /* subtype*/); in onReceive()
DCtsBaseInputMethod.java151 public void commandSwitchInputMethod(final String imeId) { in commandSwitchInputMethod() argument
152 switchInputMethod(imeId); in commandSwitchInputMethod()
/cts/hostsidetests/inputmethodservice/hostside/src/android/inputmethodservice/cts/hostside/
DInputMethodServiceLifecycleTest.java324 private void assertImeNotSelectedInSecureSettings(String imeId, long timeout) throws Exception { in assertImeNotSelectedInSecureSettings() argument
327 throw new TimeoutException(imeId + " is still the current IME even after " in assertImeNotSelectedInSecureSettings()
330 if (!imeId.equals(shell(ShellCommandUtils.getCurrentIme()))) { in assertImeNotSelectedInSecureSettings()