Searched defs:inputMethod (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java125 public IInputMethodWrapper(AbstractInputMethodService context, InputMethod inputMethod) { argument
129 mInputMethod = new WeakReference<>(inputMethod);
136 InputMethod inputMethod = mInputMethod.get();
137 // Need a valid reference to the inputMethod for everything except a dump.
138 if (inputMethod == null && msg.what != DO_DUMP) {
164 inputMethod.attachToken((IBinder)msg.obj);
168 inputMethod.bindInput((InputBinding)msg.obj);
172 inputMethod.unbindInput();
186 inputMethod.dispatchStartInputWithToken(ic, info, restarting /* restarting */,
193 inputMethod
[all...]
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DTextViewBindingAdapter.java206 @BindingAdapter({"android:inputMethod"})
207 public static void setInputMethod(TextView view, CharSequence inputMethod) { argument
209 Class<?> c = Class.forName(inputMethod.toString());
212 Log.e(TAG, "Could not create input method: " + inputMethod, e);
214 Log.e(TAG, "Could not create input method: " + inputMethod, e);
216 Log.e(TAG, "Could not create input method: " + inputMethod, e);
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java132 public static boolean isSystemIme(InputMethodInfo inputMethod) { argument
133 return (inputMethod.getServiceInfo().applicationInfo.flags

Completed in 151 milliseconds