Searched refs:servedView (Results 1 – 2 of 2) sorted by relevance
735 private static boolean isAutofillUIShowing(View servedView) { in isAutofillUIShowing() argument736 AutofillManager afm = servedView.getContext().getSystemService(AutofillManager.class); in isAutofillUIShowing()804 private static boolean canStartInput(View servedView) { in canStartInput() argument807 return servedView.hasWindowFocus() || isAutofillUIShowing(servedView); in canStartInput()1055 final View servedView = getServedViewLocked(); in hasServedByInputMethodLocked() local1056 return (servedView == view in hasServedByInputMethodLocked()1057 || (servedView != null && servedView.checkInputConnectionProxy(view))); in hasServedByInputMethodLocked()1183 final View servedView = getServedViewLocked(); in handleMessage() local1184 if (servedView != null && servedView.isFocused()) { in handleMessage()1285 final View servedView = getServedViewLocked(); in handleMessage() local[all …]
191 @NonNull InputMethodManager inputMethodManager, @Nullable View servedView) { in RemoteInputConnectionImpl() argument196 mServedView = new WeakReference<>(servedView); in RemoteInputConnectionImpl()380 final View servedView = mServedView.get(); in deactivate() local381 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()