HomeSort by relevance Sort by last modified time
    Searched defs:systemLocale (Results 1 - 7 of 7) sorted by null

  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionarySettingsUtils.java 38 final Locale systemLocale = context.getResources().getConfiguration().locale;
39 return locale.getDisplayName(systemLocale);
UserDictionaryAddWordContents.java 234 final String systemLocale = Locale.getDefault().toString();
236 locales.remove(systemLocale); // system locale may not be null
242 if (!systemLocale.equals(mLocale)) {
243 addLocaleDisplayNameToList(activity, localesList, systemLocale);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionarySettingsUtils.java 39 final Locale systemLocale = context.getResources().getConfiguration().locale;
40 return locale.getDisplayName(systemLocale);
UserDictionaryAddWordContents.java 255 final String systemLocale = Locale.getDefault().toString();
257 locales.remove(systemLocale); // system locale may not be null
263 if (!systemLocale.equals(mLocale)) {
264 addLocaleDisplayNameToList(activity, localesList, systemLocale);
UserDictionarySettings.java 200 final Locale systemLocale = getResources().getConfiguration().locale;
201 if (!TextUtils.isEmpty(mLocale) && !mLocale.equals(systemLocale.toString())) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeSwitcher.java 175 final Locale systemLocale = mResources.getConfiguration().locale;
176 final boolean sameLocale = systemLocale.equals(newLocale);
177 final boolean sameLanguage = systemLocale.getLanguage().equals(newLocale.getLanguage());
  /frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodUtils.java 263 final String systemLocale = res.getConfiguration().locale.toString();
264 if (TextUtils.isEmpty(systemLocale)) return new ArrayList<InputMethodSubtype>();
290 // We just call systemLocale.startsWith(locale) in this function because there is no
293 if (systemLocale.startsWith(locale)) {
297 if (systemLocale.equals(applicableSubtype.getLocale())) continue;
298 if (!systemLocale.equals(locale)) continue;
319 res, subtypes, SUBTYPE_MODE_KEYBOARD, systemLocale, true);
    [all...]

Completed in 150 milliseconds