Home | History | Annotate | Download | only in inputmethod

Lines Matching defs:subtypeId

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) {
1174 Slog.v(TAG, "Add subtype to the history: " + imeId + ", " + subtypeId);
1176 saveSubtypeHistory(subtypeHistory, imeId, subtypeId);
1259 // If both imeId and subtypeId are enabled, return subtypeId.
1274 // If imeId was enabled but subtypeId was disabled.
1278 // If both imeId and subtypeId are disabled, return null
1293 String subtypeId = NOT_A_SUBTYPE_ID_STR;
1297 subtypeId = mSubtypeSplitter.next();
1300 imsList.add(new Pair<>(imeId, subtypeId));
1323 public void putSelectedSubtype(int subtypeId) {
1325 Slog.d(TAG, "putSelectedInputMethodSubtypeStr: " + subtypeId + ", "
1328 putInt(Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE, subtypeId);
1372 String subtypeId = NOT_A_SUBTYPE_ID_STR;
1374 subtypeId = String.valueOf(currentSubtype.hashCode());
1377 addSubtypeToHistory(curMethodId, subtypeId);