Searched refs:mLocaleList (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DAutoReinflateContainer.java39 private LocaleList mLocaleList; field in class:AutoReinflateContainer
45 mLocaleList = context.getResources().getConfiguration().getLocales();
65 if (localeList != mLocaleList) {
66 mLocaleList = localeList;
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePickerWithRegion.java52 private Set<LocaleStore.LocaleInfo> mLocaleList; field in class:LocalePickerWithRegion
118 mLocaleList = LocaleStore.getLevelLocales(context,
120 if (mLocaleList.size() <= 1) {
121 if (listener != null && (mLocaleList.size() == 1)) {
122 listener.onLocaleSelected(mLocaleList.iterator().next());
127 mLocaleList = LocaleStore.getLevelLocales(context, langTagsToIgnore,
144 if (mLocaleList == null) {
154 mAdapter = new SuggestedLocaleAdapter(mLocaleList, countryMode);
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java95 private LocaleList mLocaleList; field in class:Configuration
742 /* This brings mLocaleList in sync with locale in case a user of the older API who doesn't know
745 if ((locale == null && !mLocaleList.isEmpty()) ||
746 (locale != null && !locale.equals(mLocaleList.get(0)))) {
747 mLocaleList = locale == null ? LocaleList.getEmptyLocaleList() : new LocaleList(locale);
757 mLocaleList = o.mLocaleList;
796 if (!mLocaleList.isEmpty()) {
798 sb.append(mLocaleList);
923 mLocaleList
[all...]

Completed in 568 milliseconds