HomeSort by relevance Sort by last modified time
    Searched full:localeset (Results 1 - 3 of 3) sorted by null

  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryList.java 80 final TreeSet<String> localeSet = new TreeSet<String>();
88 localeSet.add(null != locale ? locale : "");
95 // localeSet.add("");
108 localeSet.add(locale);
117 if (!localeSet.contains(Locale.getDefault().getLanguage().toString())) {
118 localeSet.add(Locale.getDefault().toString());
121 return localeSet;
131 final TreeSet<String> localeSet =
136 localeSet.add(mLocale);
138 if (localeSet.size() > 1)
    [all...]
InputMethodAndLanguageSettings.java 197 final TreeSet<String> localeSet = UserDictionaryList.getUserDictionaryLocalesSet(activity);
198 if (null == localeSet) {
211 if (localeSet.size() <= 1) {
212 if (!localeSet.isEmpty()) {
221 extras.putString("locale", localeSet.first());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryList.java 60 final TreeSet<String> localeSet = new TreeSet<String>();
68 localeSet.add(null != locale ? locale : "");
74 localeSet.add("");
87 localeSet.add(locale);
96 if (!localeSet.contains(Locale.getDefault().getLanguage().toString())) {
97 localeSet.add(Locale.getDefault().toString());
100 return localeSet;
110 final TreeSet<String> localeSet =
113 if (localeSet.size() > 1) {
116 localeSet.add("")
    [all...]

Completed in 110 milliseconds