Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DAppLocaleCollector.java151 public Set<LocaleStore.LocaleInfo> getSystemSupportedLocale(Set<String> langTagsToIgnore, in getSystemSupportedLocale() argument
153 return LocaleStore.getLevelLocales(mContext, langTagsToIgnore, parent, translatedOnly); in getSystemSupportedLocale()
171 HashSet<String> langTagsToIgnore = new HashSet<>(); in getIgnoredLocaleList() local
174 langTagsToIgnore.add(mAppCurrentLocale.getLocale().toLanguageTag()); in getIgnoredLocaleList()
180 info -> langTagsToIgnore.add(info.getLocale().toLanguageTag())); in getIgnoredLocaleList()
182 mImeLocales.forEach(info -> langTagsToIgnore.add(info.getLocale().toLanguageTag())); in getIgnoredLocaleList()
188 langTagsToIgnore.add(systemLangList.get(i).toLanguageTag()); in getIgnoredLocaleList()
190 return langTagsToIgnore; in getIgnoredLocaleList()
206 Set<String> langTagsToIgnore = getIgnoredLocaleList(translatedOnly); in getSupportedLocaleList() local
215 systemLocaleList = getSystemSupportedLocale(langTagsToIgnore, parent, translatedOnly); in getSupportedLocaleList()
[all …]
H A DSystemLocaleCollector.java54 Set<String> langTagsToIgnore = getIgnoredLocaleList(translatedOnly); in getSupportedLocaleList() local
58 langTagsToIgnore, parent, translatedOnly, mExplicitLocales); in getSupportedLocaleList()
60 localeList = LocaleStore.getLevelLocales(mContext, langTagsToIgnore, in getSupportedLocaleList()