Home
last modified time | relevance | path

Searched refs:subtypeHashCodes (Results 1 – 4 of 4) sorted by relevance

/cts/tests/inputmethod/installtests/src/android/view/inputmethod/cts/installtests/
DAdditionalSubtypeLifecycleTest.java129 final var subtypeHashCodes = getSubtypeHashCodes(Ime1Constants.IME_ID, currentUserId); in testPerUserAdditionalInputMethodSubtype() local
131 assertThat(subtypeHashCodes).contains(TEST_SUBTYPE1.hashCode()); in testPerUserAdditionalInputMethodSubtype()
132 assertThat(subtypeHashCodes).contains(TEST_SUBTYPE2.hashCode()); in testPerUserAdditionalInputMethodSubtype()
133 assertThat(subtypeHashCodes).doesNotContain(TEST_SUBTYPE3.hashCode()); in testPerUserAdditionalInputMethodSubtype()
136 final var subtypeHashCodes = getSubtypeHashCodes(Ime2Constants.IME_ID, in testPerUserAdditionalInputMethodSubtype() local
139 assertThat(subtypeHashCodes).doesNotContain(TEST_SUBTYPE1.hashCode()); in testPerUserAdditionalInputMethodSubtype()
140 assertThat(subtypeHashCodes).doesNotContain(TEST_SUBTYPE2.hashCode()); in testPerUserAdditionalInputMethodSubtype()
141 assertThat(subtypeHashCodes).contains(TEST_SUBTYPE3.hashCode()); in testPerUserAdditionalInputMethodSubtype()
166 final var subtypeHashCodes = getSubtypeHashCodes(Ime1Constants.IME_ID, currentUserId); in testClearAdditionalInputMethodSubtypeUponApkUpdateForForegroundUser() local
168 assertThat(subtypeHashCodes).doesNotContain(TEST_SUBTYPE1.hashCode()); in testClearAdditionalInputMethodSubtypeUponApkUpdateForForegroundUser()
[all …]
/cts/tests/inputmethod/util/src/android/view/inputmethod/cts/util/
DSecureSettingsUtils.java74 final ArrayList<String> subtypeHashCodes = new ArrayList<>(); in updateEnabledInputMethods() local
76 subtypeHashCodes.add(subtypeSplitter.next()); in updateEnabledInputMethods()
79 subtypeHashCodes.clear(); in updateEnabledInputMethods()
81 subtypeHashCodes.add(Integer.toString(subtype.hashCode())); in updateEnabledInputMethods()
88 for (var hashCode : subtypeHashCodes) { in updateEnabledInputMethods()
/cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
DMockImeSession.java1602 @Nullable int[] subtypeHashCodes) { in callSetExplicitlyEnabledInputMethodSubtypes() argument
1605 params.putIntArray("subtypeHashCodes", subtypeHashCodes); in callSetExplicitlyEnabledInputMethodSubtypes()
DMockIme.java462 final int[] subtypeHashCodes = in onHandleCommand()
465 .setExplicitlyEnabledInputMethodSubtypes(imeId, subtypeHashCodes); in onHandleCommand()