OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mImm
(Results
1 - 16
of
16
) sorted by null
/frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ButtonActivityTest.java
51
assertTrue(
mImm
.isActive());
53
assertFalse(
mImm
.isAcceptingText());
OneEditTextActivityNotSelectedTests.java
37
assertFalse(
mImm
.isAcceptingText());
OneEditTextActivitySelectedTests.java
40
assertTrue(
mImm
.isAcceptingText());
ImfBaseTestCase.java
48
protected InputMethodManager
mImm
;
69
mImm
= InputMethodManager.getInstance();
84
mImm
.hideSoftInputFromWindow(editText.getWindowToken(), 0);
110
mImm
.hideSoftInputFromWindow(editText.getWindowToken(), 0);
130
mImm
.hideSoftInputFromWindow(servedView.getWindowToken(), 0);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodManagerCompatWrapper.java
31
public final InputMethodManager
mImm
;
34
mImm
= (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
38
return (Boolean)CompatUtils.invoke(
mImm
, false /* defaultValue */,
/frameworks/base/cmds/ime/src/com/android/commands/ime/
Ime.java
30
IInputMethodManager
mImm
;
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/packages/Keyguard/src/com/android/keyguard/
KeyguardPasswordView.java
48
InputMethodManager
mImm
;
80
mImm
.showSoftInput(mPasswordEntry, InputMethodManager.SHOW_IMPLICIT);
87
mImm
.hideSoftInputFromWindow(getWindowToken(), 0);
96
mImm
= (InputMethodManager) getContext().getSystemService(
128
if (switchImeButton != null && hasMultipleEnabledIMEsOrSubtypes(
mImm
, false)) {
134
mImm
.showInputMethodPicker();
/development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
InputMethodSettingsImpl.java
47
private InputMethodManager
mImm
;
59
mImm
= (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
60
mImi = getMyImi(context,
mImm
);
187
final String summary = getEnabledSubtypesLabel(mContext,
mImm
, mImi);
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsImpl.java
41
private InputMethodManager
mImm
;
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/
InputMethodService.java
252
InputMethodManager
mImm
;
434
mImm
.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
653
mImm
= (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
785
mImm
.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
[
all
...]
/packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodPreference.java
55
private final InputMethodManager
mImm
;
93
mImm
= imm;
224
final List<InputMethodSubtype> subtypes =
mImm
.getEnabledInputMethodSubtypeList(mImi, true);
317
mFragment, mFragment.getActivity().getContentResolver(),
mImm
.getInputMethodList(),
InputMethodSettingValuesWrapper.java
51
private final InputMethodManager
mImm
;
80
mImm
= (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
88
final List<InputMethodInfo> imms =
mImm
.getInputMethodList();
129
final InputMethodSubtype subtype =
mImm
.getCurrentInputMethodSubtype();
InputMethodAndSubtypeEnabler.java
56
private InputMethodManager
mImm
;
66
mImm
= (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
354
mImm
.getEnabledInputMethodSubtypeList(imi, true);
InputMethodAndLanguageSettings.java
90
private InputMethodManager
mImm
;
158
mImm
= (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
447
if (context == null ||
mImm
== null) return;
475
new InputMethodPreference(this, intent,
mImm
, imi);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupWizardActivity.java
51
private InputMethodManager
mImm
;
121
mImm
= (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
122
mHandler = new SettingsPoolingHandler(this,
mImm
);
276
mImm
.showInputMethodPicker();
281
final InputMethodInfo imi = SetupActivity.getInputMethodInfoOf(getPackageName(),
mImm
);
305
if (!SetupActivity.isThisImeEnabled(this,
mImm
)) {
308
if (!SetupActivity.isThisImeCurrent(this,
mImm
)) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java
99
return mImmWrapper.
mImm
;
104
for (final InputMethodInfo imi : mImmWrapper.
mImm
.getInputMethodList()) {
132
final InputMethodManager imm = mImmWrapper.
mImm
;
154
final InputMethodManager imm = mImmWrapper.
mImm
;
278
final InputMethodSubtype currentSubtype = mImmWrapper.
mImm
.getCurrentInputMethodSubtype();
283
final List<InputMethodInfo> enabledImis = mImmWrapper.
mImm
.getEnabledInputMethodList();
357
mImmWrapper.
mImm
.setInputMethodAndSubtype(
362
mImmWrapper.
mImm
.setAdditionalInputMethodSubtypes(
376
final List<InputMethodSubtype> result = mImmWrapper.
mImm
.getEnabledInputMethodSubtypeList(
Completed in 431 milliseconds