Searched refs:subtypeId (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java345 * @return the most applicable subtypeId
515 for (String subtypeId: subtypes) {
516 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
727 String subtypeId = ime.second;
728 if (TextUtils.isEmpty(subtypeId)) {
729 subtypeId = NOT_A_SUBTYPE_ID_STR;
737 subtypeId);
743 private void addSubtypeToHistory(String imeId, String subtypeId) { argument
757 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
759 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
902 putSelectedSubtype(int subtypeId) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java1658 /* package */ void setInputMethodLocked(String id, int subtypeId) { argument
1672 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1673 newSubtype = info.getSubtypeAt(subtypeId);
1685 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1702 // subtypeId the name of a subtype which will be set.
1703 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
2092 int subtypeId = NOT_A_SUBTYPE_ID;
2102 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
2126 subtypeId
2245 setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) argument
2758 ImeSubtypeListItem(CharSequence imeName, CharSequence subtypeName, InputMethodInfo imi, int subtypeId, String subtypeLocale, String systemLocale) argument
2934 setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId, boolean setSubtypeOnly) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java149 * @param subtypeId is the unique ID for this subtype. The input method framework keeps
155 public InputMethodSubtypeBuilder setSubtypeId(int subtypeId) { argument
156 mSubtypeId = subtypeId;

Completed in 45 milliseconds