Searched defs:mImm (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/cmds/ime/src/com/android/commands/ime/
H A DIme.java30 IInputMethodManager mImm; field in class:Ime
49 mImm = IInputMethodManager.Stub.asInterface(ServiceManager.getService("input_method"));
50 if (mImm == null) {
108 methods = mImm.getEnabledInputMethodList();
116 methods = mImm.getInputMethodList();
147 boolean res = mImm.setInputMethodEnabled(id, state);
174 mImm.setInputMethod(null, id);
/frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
H A DImfBaseTestCase.java48 protected InputMethodManager mImm; field in class:ImfBaseTestCase
69 mImm = InputMethodManager.getInstance();
84 mImm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
110 mImm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
130 mImm.hideSoftInputFromWindow(servedView.getWindowToken(), 0);
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsImpl.java41 private InputMethodManager mImm; field in class:InputMethodSettingsImpl
51 mImm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
52 mImi = getMyImi(context, mImm);
169 final String summary = getEnabledSubtypesLabel(context, mImm, mImi);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPasswordView.java52 InputMethodManager mImm; field in class:KeyguardPasswordView
81 mImm.showSoftInput(mPasswordEntry, InputMethodManager.SHOW_IMPLICIT);
106 mImm.showSoftInput(mPasswordEntry, InputMethodManager.SHOW_IMPLICIT);
126 mImm.hideSoftInputFromWindow(getWindowToken(), 0);
141 mImm = (InputMethodManager) getContext().getSystemService(
166 if (switchImeButton != null && hasMultipleEnabledIMEsOrSubtypes(mImm, false)) {
173 mImm.showInputMethodPicker(false /* showAuxiliarySubtypes */);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java255 InputMethodManager mImm; field in class:InputMethodService
447 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
681 mImm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
684 mShouldClearInsetOfPreviousIme = (mImm.getInputMethodWindowVisibleHeight() > 0);
818 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
1197 mImm.showStatusIcon(mToken, getPackageName(), iconResId);
1202 mImm.hideStatusIcon(mToken);
1213 mImm.setInputMethod(mToken, id);
1504 mImm.setImeWindowStatus(mToken, nextImeWindowStatus, mBackDisposition);
1529 mImm
[all...]

Completed in 429 milliseconds