Searched defs:imm (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardPasswordView.java155 * @param imm The input method manager
159 private boolean hasMultipleEnabledIMEsOrSubtypes(InputMethodManager imm, argument
161 final List<InputMethodInfo> enabledImis = imm.getEnabledInputMethodList();
170 imm.getEnabledInputMethodSubtypeList(imi, true);
195 // imm.getEnabledInputMethodSubtypeList(null, false) will return the current IME's enabled
197 || imm.getEnabledInputMethodSubtypeList(null, false).size() > 1;
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java153 @Override protected void viewClicked(InputMethodManager imm) { argument
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsImpl.java82 private static InputMethodInfo getMyImi(Context context, InputMethodManager imm) { argument
83 final List<InputMethodInfo> imis = imm.getInputMethodList();
94 Context context, InputMethodManager imm, InputMethodInfo imi) {
95 if (context == null || imm == null || imi == null) return null;
96 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(imi, true);
93 getEnabledSubtypesLabel( Context context, InputMethodManager imm, InputMethodInfo imi) argument
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DPasswordUnlockScreen.java182 final InputMethodManager imm = (InputMethodManager) getContext().getSystemService(
184 if (mIsAlpha && switchImeButton != null && hasMultipleEnabledIMEsOrSubtypes(imm, false)) {
190 imm.showInputMethodPicker();
209 * @param imm The input method manager
213 private boolean hasMultipleEnabledIMEsOrSubtypes(InputMethodManager imm, argument
215 final List<InputMethodInfo> enabledImis = imm.getEnabledInputMethodList();
224 imm.getEnabledInputMethodSubtypeList(imi, true);
249 // imm.getEnabledInputMethodSubtypeList(null, false) will return the current IME's enabled
251 || imm.getEnabledInputMethodSubtypeList(null, false).size() > 1;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettingsModel.java583 private boolean needsToShowImeSwitchOngoingNotification(InputMethodManager imm) { argument
584 List<InputMethodInfo> imis = imm.getEnabledInputMethodList();
594 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(imi,
627 InputMethodManager imm =
629 List<InputMethodInfo> imis = imm.getInputMethodList();
631 mImeState.enabled = (visible && needsToShowImeSwitchOngoingNotification(imm));
633 imm, imis, mContext.getPackageManager());
639 InputMethodManager imm, List<InputMethodInfo> imis, PackageManager pm) {
646 final InputMethodSubtype subtype = imm.getCurrentInputMethodSubtype();
638 getCurrentInputMethodName(Context context, ContentResolver resolver, InputMethodManager imm, List<InputMethodInfo> imis, PackageManager pm) argument
/frameworks/base/core/java/android/widget/
H A DTextView.java1331 InputMethodManager imm = InputMethodManager.peekInstance();
1332 if (imm != null && imm.isActive(this)) {
1333 imm.hideSoftInputFromWindow(getWindowToken(), 0);
1341 InputMethodManager imm = InputMethodManager.peekInstance();
1342 if (imm != null) imm.restartInput(this);
1513 InputMethodManager imm = InputMethodManager.peekInstance();
1514 if (imm != null) imm
8423 viewClicked(InputMethodManager imm) argument
[all...]

Completed in 3990 milliseconds