Searched refs:inputMethod (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java114 InputMethod inputMethod) {
118 mInputMethod = new WeakReference<InputMethod>(inputMethod);
128 InputMethod inputMethod = mInputMethod.get();
129 // Need a valid reference to the inputMethod for everything except a dump.
130 if (inputMethod == null && msg.what != DO_DUMP) {
156 inputMethod.attachToken((IBinder)msg.obj);
160 inputMethod.bindInput((InputBinding)msg.obj);
164 inputMethod.unbindInput();
174 inputMethod.startInput(ic, info);
186 inputMethod
113 IInputMethodWrapper(AbstractInputMethodService context, InputMethod inputMethod) argument
[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/services/core/java/com/android/server/wm/
H A DDisplayContent.java446 final WindowState inputMethod = mService.mInputMethodWindow;
447 if (inputMethod != null && inputMethod.isVisibleLw()) {
451 inputMethod.getTouchableRegion(mTmpRegion);
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java127 public static boolean isSystemIme(InputMethodInfo inputMethod) { argument
128 return (inputMethod.getServiceInfo().applicationInfo.flags
/frameworks/base/core/java/android/widget/
H A DTextView.java840 CharSequence inputMethod = null;
874 inputMethod = a.getText(attr);
1229 if (inputMethod != null) {
1233 c = Class.forName(inputMethod.toString());

Completed in 399 milliseconds