Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java502 private static boolean isAutofillUIShowing(View servedView) { in isAutofillUIShowing() argument
503 AutofillManager afm = servedView.getContext().getSystemService(AutofillManager.class); in isAutofillUIShowing()
557 private static boolean canStartInput(View servedView) { in canStartInput() argument
560 return servedView.hasWindowFocus() || isAutofillUIShowing(servedView); in canStartInput()
585 final View servedView; in startInput() local
593 servedView = getServedViewLocked(); in startInput()
671 View servedView = controller.getServedView(); in startInputAsyncOnWindowFocusGain() local
672 boolean nextFocusHasConnection = servedView != null && servedView == focusedView in startInputAsyncOnWindowFocusGain()
814 final View servedView = getServedViewLocked(); in hasServedByInputMethodLocked() local
815 return (servedView == view in hasServedByInputMethodLocked()
[all …]
DBaseInputConnection.java842 final View servedView = mIMM.mCurRootView.getImeFocusController().getServedView(); in ensureDefaultComposingSpans() local
843 context = servedView != null ? servedView.getContext() : null; in ensureDefaultComposingSpans()
/frameworks/base/core/java/com/android/internal/view/
DIInputConnectionWrapper.java117 @NonNull InputMethodManager inputMethodManager, @Nullable View servedView) { in IInputConnectionWrapper() argument
122 mServedView = new WeakReference<>(servedView); in IInputConnectionWrapper()
155 final View servedView = mServedView.get(); in deactivate() local
156 if (servedView != null) { in deactivate()
157 final Handler handler = servedView.getHandler(); in deactivate()
162 Log.v(TAG, "Calling View.onInputConnectionClosed: view=" + servedView); in deactivate()
165 servedView.onInputConnectionClosedInternal(); in deactivate()
167 handler.post(servedView::onInputConnectionClosedInternal); in deactivate()