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

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java152 * @param subtypeId is the unique ID for this subtype. The input method framework keeps
158 public InputMethodSubtypeBuilder setSubtypeId(int subtypeId) { argument
159 mSubtypeId = subtypeId;
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeSwitchingController.java62 InputMethodInfo imi, int subtypeId, String subtypeLocale, String systemLocale) {
66 mSubtypeId = subtypeId;
61 ImeSubtypeListItem(CharSequence imeName, CharSequence subtypeName, InputMethodInfo imi, int subtypeId, String subtypeLocale, String systemLocale) argument
H A DInputMethodUtils.java591 * @return the most applicable subtypeId
798 for (String subtypeId: ime.second) {
799 builder.append(INPUT_METHOD_SUBTYPE_SEPARATER).append(subtypeId);
1048 String subtypeId = ime.second;
1049 if (TextUtils.isEmpty(subtypeId)) {
1050 subtypeId = NOT_A_SUBTYPE_ID_STR;
1058 subtypeId);
1064 private void addSubtypeToHistory(String imeId, String subtypeId) { argument
1078 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
1080 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
1223 putSelectedSubtype(int subtypeId) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java1934 /* package */ void setInputMethodLocked(String id, int subtypeId) { argument
1956 if (subtypeId >= 0 && subtypeId < subtypeCount) {
1957 newSubtype = info.getSubtypeAt(subtypeId);
1969 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, true);
1986 // subtypeId the name of a subtype which will be set.
1987 setSelectedInputMethodAndSubtypeLocked(info, subtypeId, false);
2394 int subtypeId = NOT_A_SUBTYPE_ID;
2404 subtypeId = InputMethodUtils.getSubtypeIdFromHashCode(lastImi, lastSubtypeHash);
2428 subtypeId
2586 setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) argument
2592 setInputMethodWithSubtypeIdLocked(IBinder token, String id, int subtypeId) argument
3270 setSelectedInputMethodAndSubtypeLocked(InputMethodInfo imi, int subtypeId, boolean setSubtypeOnly) argument
[all...]

Completed in 205 milliseconds