Searched defs:mImm (Results 1 - 6 of 6) 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(mTargetActivity);
84 mImm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
110 mImm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
130 mImm.hideSoftInputFromWindow(servedView.getWindowToken(), 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DInputMethodButton.java44 private final InputMethodManager mImm; field in class:InputMethodButton
61 mImm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
73 List<InputMethodInfo> imis = mImm.getEnabledInputMethodList();
83 final List<InputMethodSubtype> subtypes = mImm.getEnabledInputMethodSubtypeList(
H A DInputMethodsPanel.java63 private final InputMethodManager mImm; field in class:InputMethodsPanel
109 mImm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
202 mImm.hideSoftInputFromWindow(getWindowToken(), 0);
313 mImm.setInputMethodAndSubtype(mToken, imi.getId(), subtype);
364 getCurrentInputMethodInfo(), mImm.getCurrentInputMethodSubtype());
402 final List<InputMethodInfo> imis = mImm.getEnabledInputMethodList();
405 mImm.getEnabledInputMethodSubtypeList(imi, true));
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsImpl.java41 private InputMethodManager mImm; field in class:InputMethodSettingsImpl
53 mImm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
54 mImi = getMyImi(context, mImm);
181 final String summary = getEnabledSubtypesLabel(mContext, mImm, mImi);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java250 InputMethodManager mImm; field in class:InputMethodService
426 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
625 mImm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
752 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
1128 mImm.showStatusIcon(mToken, getPackageName(), iconResId);
1133 mImm.hideStatusIcon(mToken);
1144 mImm.setInputMethod(mToken, id);
1434 mImm.setImeWindowStatus(mToken, IME_ACTIVE, mBackDisposition);
1454 mImm.setImeWindowStatus(mToken, 0, mBackDisposition);
1667 mImm
[all...]

Completed in 134 milliseconds