Home
last modified time | relevance | path

Searched refs:inputMethodManager (Results 1 – 14 of 14) sorted by relevance

/aosp14/frameworks/base/core/java/android/widget/
H A DTimePickerSpinnerDelegate.java472 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local
473 if (inputMethodManager != null) { in updateInputState()
474 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()
476 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
477 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()
479 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
480 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()
482 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
H A DDatePickerSpinnerDelegate.java641 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local
642 if (inputMethodManager != null) { in updateInputState()
643 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()
645 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
646 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()
648 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
649 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()
651 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
H A DNumberPicker.java1314 InputMethodManager inputMethodManager = in showSoftInput() local
1316 if (inputMethodManager != null) { in showSoftInput()
1321 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()
1329 InputMethodManager inputMethodManager = in hideSoftInput() local
1331 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()
1332 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardPasswordViewControllerTest.kt59 @Mock lateinit var inputMethodManager: InputMethodManager
99 inputMethodManager,
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/view/
H A DHandwritingInitiatorPerfTest.java64 final InputMethodManager inputMethodManager = in setup() local
66 mHandwritingInitiator = new HandwritingInitiator(viewConfiguration, inputMethodManager); in setup()
/aosp14/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java103 @Nullable InputMethodManager inputMethodManager) throws ServiceNotFoundException { in TextServicesManager() argument
107 mInputMethodManager = inputMethodManager; in TextServicesManager()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardPasswordViewController.java103 InputMethodManager inputMethodManager, in KeyguardPasswordViewController() argument
114 mInputMethodManager = inputMethodManager; in KeyguardPasswordViewController()
H A DKeyguardInputViewController.java216 InputMethodManager inputMethodManager, @Main DelayableExecutor mainExecutor, in Factory() argument
227 mInputMethodManager = inputMethodManager; in Factory()
/aosp14/frameworks/base/core/java/android/view/
H A DHandwritingInitiator.java120 @NonNull InputMethodManager inputMethodManager) { in HandwritingInitiator() argument
123 mImm = inputMethodManager; in HandwritingInitiator()
/aosp14/frameworks/base/core/tests/coretests/src/android/view/stylus/
H A DHandwritingInitiatorTest.java103 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in setup() local
105 spy(new HandwritingInitiator(viewConfiguration, inputMethodManager)); in setup()
/aosp14/frameworks/base/core/java/android/view/inputmethod/
H A DRemoteInputConnectionImpl.java195 @NonNull InputMethodManager inputMethodManager, @Nullable View servedView) { in RemoteInputConnectionImpl() argument
199 mParentInputMethodManager = inputMethodManager; in RemoteInputConnectionImpl()
/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DKeyboardLayoutManager.java1329 InputMethodManager inputMethodManager = Objects.requireNonNull( in getImeInfoListForLayoutMapping() local
1342 inputMethodManager.getEnabledInputMethodSubtypeList( in getImeInfoListForLayoutMapping()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
H A DNavigationBar.java566 InputMethodManager inputMethodManager, in NavigationBar()
610 mInputMethodManager = inputMethodManager; in NavigationBar()
/aosp14/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java3202 final InputMethodManager inputMethodManager = view.getContext().getSystemService( in requestShowSoftInputInViewThread() local
3204 boolean ret = inputMethodManager.showSoftInput(view, /*flags=*/ 0); in requestShowSoftInputInViewThread()