Home
last modified time | relevance | path

Searched refs:servedView (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java735 private static boolean isAutofillUIShowing(View servedView) { in isAutofillUIShowing() argument
736 AutofillManager afm = servedView.getContext().getSystemService(AutofillManager.class); in isAutofillUIShowing()
804 private static boolean canStartInput(View servedView) { in canStartInput() argument
807 return servedView.hasWindowFocus() || isAutofillUIShowing(servedView); in canStartInput()
1055 final View servedView = getServedViewLocked(); in hasServedByInputMethodLocked() local
1056 return (servedView == view in hasServedByInputMethodLocked()
1057 || (servedView != null && servedView.checkInputConnectionProxy(view))); in hasServedByInputMethodLocked()
1183 final View servedView = getServedViewLocked(); in handleMessage() local
1184 if (servedView != null && servedView.isFocused()) { in handleMessage()
1285 final View servedView = getServedViewLocked(); in handleMessage() local
[all …]
DRemoteInputConnectionImpl.java191 @NonNull InputMethodManager inputMethodManager, @Nullable View servedView) { in RemoteInputConnectionImpl() argument
196 mServedView = new WeakReference<>(servedView); in RemoteInputConnectionImpl()
380 final View servedView = mServedView.get(); in deactivate() local
381 if (servedView != null) { in deactivate()
382 final Handler handler = servedView.getHandler(); in deactivate()
387 Log.v(TAG, "Calling View.onInputConnectionClosed: view=" + servedView); in deactivate()
390 servedView.onInputConnectionClosedInternal(); in deactivate()
392 handler.post(servedView::onInputConnectionClosedInternal); in deactivate()
396 final ViewRootImpl viewRoot = servedView.getViewRootImpl(); in deactivate()
398 viewRoot.getHandwritingInitiator().onInputConnectionClosed(servedView); in deactivate()