Searched defs:subtypeId (Results 1 - 5 of 5) sorted by relevance
/frameworks/base/core/java/android/view/textservice/ |
H A D | SpellCheckerSubtype.java | 78 * @param subtypeId The subtype ID that is supposed to be stable during package update. 83 int subtypeId) { 88 mSubtypeId = subtypeId; 82 SpellCheckerSubtype(int nameId, String locale, String languageTag, String extraValue, int subtypeId) argument
|
/frameworks/base/core/java/com/android/internal/inputmethod/ |
H A D | InputMethodSubtypeSwitchingController.java | 64 InputMethodInfo imi, int subtypeId, String subtypeLocale, String systemLocale) { 68 mSubtypeId = subtypeId; 63 ImeSubtypeListItem(CharSequence imeName, CharSequence subtypeName, InputMethodInfo imi, int subtypeId, String subtypeLocale, String systemLocale) argument
|
H A D | InputMethodUtils.java | 608 * @return the most applicable subtypeId 870 for (String subtypeId: ime.second) { 871 builder.append(INPUT_METHOD_SUBTYPE_SEPARATOR).append(subtypeId); 1144 String subtypeId = ime.second; 1145 if (TextUtils.isEmpty(subtypeId)) { 1146 subtypeId = NOT_A_SUBTYPE_ID_STR; 1154 subtypeId); 1160 private void addSubtypeToHistory(String imeId, String subtypeId) { argument 1174 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId); 1176 saveSubtypeHistory(subtypeHistory, imeId, subtypeId); 1323 putSelectedSubtype(int subtypeId) argument [all...] |
/frameworks/base/core/java/android/view/inputmethod/ |
H A D | InputMethodSubtype.java | 162 * @param subtypeId is the unique ID for this subtype. The input method framework keeps 168 public InputMethodSubtypeBuilder setSubtypeId(int subtypeId) { argument 169 mSubtypeId = subtypeId;
|
/frameworks/base/services/core/java/com/android/server/ |
H A D | InputMethodManagerService.java | 2506 /* package */ void setInputMethodLocked(String id, int subtypeId) { argument 2520 if (subtypeId >= 0 && subtypeId < subtypeCount) { 2521 newSubtype = info.getSubtypeAt(subtypeId); 2533 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true); 2550 // subtypeId the name of a subtype which will be set. 2551 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false); 3056 int subtypeId = NOT_A_SUBTYPE_ID; 3066 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash); 3090 subtypeId 3259 setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) argument 3265 setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) argument 4028 setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId, boolean setSubtypeOnly) argument [all...] |
Completed in 34 milliseconds