Home
last modified time | relevance | path

Searched refs:getShortcutsForLocale (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DPersonalDictionaryLookupTest.java155 verifyWordExists(lookup.getShortcutsForLocale(Locale.US), "shortcut"); in testShortcutMatchesInputCountry()
156 assertTrue(lookup.getShortcutsForLocale(Locale.UK).isEmpty()); in testShortcutMatchesInputCountry()
157 assertTrue(lookup.getShortcutsForLocale(Locale.ENGLISH).isEmpty()); in testShortcutMatchesInputCountry()
158 assertTrue(lookup.getShortcutsForLocale(Locale.FRENCH).isEmpty()); in testShortcutMatchesInputCountry()
159 assertTrue(lookup.getShortcutsForLocale(ANY_LOCALE).isEmpty()); in testShortcutMatchesInputCountry()
174 verifyWordExists(lookup.getShortcutsForLocale(Locale.US), "shortcut"); in testShortcutMatchesInputLanguage()
175 verifyWordExists(lookup.getShortcutsForLocale(Locale.UK), "shortcut"); in testShortcutMatchesInputLanguage()
176 verifyWordExists(lookup.getShortcutsForLocale(Locale.ENGLISH), "shortcut"); in testShortcutMatchesInputLanguage()
177 assertTrue(lookup.getShortcutsForLocale(Locale.FRENCH).isEmpty()); in testShortcutMatchesInputLanguage()
178 assertTrue(lookup.getShortcutsForLocale(ANY_LOCALE).isEmpty()); in testShortcutMatchesInputLanguage()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DPersonalDictionaryLookup.java352 public Set<String> getShortcutsForLocale(@Nonnull final Locale inputLocale) { in getShortcutsForLocale() method in PersonalDictionaryLookup