Searched refs: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 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...]
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
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java1996 /* package */ void setInputMethodLocked(String id, int subtypeId) { argument
2010 if (subtypeId >= 0 && subtypeId < subtypeCount) {
2011 newSubtype = info.getSubtypeAt(subtypeId);
2023 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
2042 // subtypeId the name of a subtype which will be set.
2043 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
2474 int subtypeId = NOT_A_SUBTYPE_ID;
2484 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
2508 subtypeId
2688 setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) argument
2694 setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) argument
3418 setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId, boolean setSubtypeOnly) 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;

Completed in 129 milliseconds