Home
last modified time | relevance | path

Searched refs:useFirstLastBigramsForLocale (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DContactsDictionaryUtilsTest.java58 assertTrue(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.ENGLISH)); in testUseFirstLastBigramsForLocale()
59 assertTrue(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.US)); in testUseFirstLastBigramsForLocale()
60 assertTrue(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.UK)); in testUseFirstLastBigramsForLocale()
61 assertFalse(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.CHINA)); in testUseFirstLastBigramsForLocale()
62 assertFalse(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.GERMAN)); in testUseFirstLastBigramsForLocale()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DContactsDictionaryUtils.java48 public static boolean useFirstLastBigramsForLocale(final Locale locale) { in useFirstLastBigramsForLocale() method in ContactsDictionaryUtils
DContactsBinaryDictionary.java57 mUseFirstLastBigrams = ContactsDictionaryUtils.useFirstLastBigramsForLocale(locale); in ContactsBinaryDictionary()