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

/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeHandle.java39 public InputMethodSubtypeHandle(String inputMethodId, int subtypeId) { argument
41 mSubtypeId = subtypeId;
H A DInputMethodSubtypeSwitchingController.java63 InputMethodInfo imi, int subtypeId, String subtypeLocale, String systemLocale) {
67 mSubtypeId = subtypeId;
62 ImeSubtypeListItem(CharSequence imeName, CharSequence subtypeName, InputMethodInfo imi, int subtypeId, String subtypeLocale, String systemLocale) argument
H A DInputMethodUtils.java643 * @return the most applicable subtypeId
906 for (String subtypeId: ime.second) {
907 builder.append(INPUT_METHOD_SUBTYPE_SEPARATOR).append(subtypeId);
1197 String subtypeId = ime.second;
1198 if (TextUtils.isEmpty(subtypeId)) {
1199 subtypeId = NOT_A_SUBTYPE_ID_STR;
1207 subtypeId);
1213 private void addSubtypeToHistory(String imeId, String subtypeId) { argument
1227 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
1229 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
1376 putSelectedSubtype(int subtypeId) argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java78 * @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/android/view/inputmethod/
H A DInputMethodSubtype.java160 * @param subtypeId is the unique ID for this subtype. The input method framework keeps
166 public InputMethodSubtypeBuilder setSubtypeId(int subtypeId) { argument
167 mSubtypeId = subtypeId;
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java2000 /* package */ void setInputMethodLocked(String id, int subtypeId) { argument
2014 if (subtypeId >= 0 && subtypeId < subtypeCount) {
2015 newSubtype = info.getSubtypeAt(subtypeId);
2027 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
2046 // subtypeId the name of a subtype which will be set.
2047 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
2478 int subtypeId = NOT_A_SUBTYPE_ID;
2488 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
2512 subtypeId
2692 setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) argument
2698 setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) argument
3426 setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId, boolean setSubtypeOnly) argument
[all...]

Completed in 75 milliseconds