Home
last modified time | relevance | path

Searched refs:mLocaleList (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/compat/java/android/support/v4/os/
DLocaleListCompat.java38 private LocaleListHelper mLocaleList = new LocaleListHelper(); field in LocaleListCompat.LocaleListCompatBaseImpl
42 mLocaleList = new LocaleListHelper(list); in setLocaleList()
47 return mLocaleList; in getLocaleList()
52 return mLocaleList.get(index); in get()
57 return mLocaleList.isEmpty(); in isEmpty()
63 return mLocaleList.size(); in size()
69 return mLocaleList.indexOf(locale); in indexOf()
74 return mLocaleList.equals(((LocaleListCompat) other).unwrap()); in equals()
79 return mLocaleList.hashCode(); in hashCode()
84 return mLocaleList.toString(); in toString()
[all …]
/frameworks/base/core/java/android/content/res/
DConfiguration.java100 private LocaleList mLocaleList; field in Configuration
864 if ((locale == null && !mLocaleList.isEmpty()) || in fixUpLocaleList()
865 (locale != null && !locale.equals(mLocaleList.get(0)))) { in fixUpLocaleList()
866 mLocaleList = locale == null ? LocaleList.getEmptyLocaleList() : new LocaleList(locale); in fixUpLocaleList()
881 mLocaleList = o.mLocaleList; in setTo()
923 if (!mLocaleList.isEmpty()) { in toString()
925 sb.append(mLocaleList); in toString()
1070 mLocaleList = LocaleList.getEmptyLocaleList(); in setToDefaults()
1129 if (!delta.mLocaleList.isEmpty() && !mLocaleList.equals(delta.mLocaleList)) { in updateFrom()
1131 mLocaleList = delta.mLocaleList; in updateFrom()
[all …]
/frameworks/base/core/java/com/android/internal/app/
DLocalePickerWithRegion.java52 private Set<LocaleStore.LocaleInfo> mLocaleList; field in LocalePickerWithRegion
118 mLocaleList = LocaleStore.getLevelLocales(context, in setListener()
120 if (mLocaleList.size() <= 1) { in setListener()
121 if (listener != null && (mLocaleList.size() == 1)) { in setListener()
122 listener.onLocaleSelected(mLocaleList.iterator().next()); in setListener()
127 mLocaleList = LocaleStore.getLevelLocales(context, langTagsToIgnore, in setListener()
144 if (mLocaleList == null) { in onCreate()
154 mAdapter = new SuggestedLocaleAdapter(mLocaleList, countryMode); in onCreate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DAutoReinflateContainer.java39 private LocaleList mLocaleList; field in AutoReinflateContainer
45 mLocaleList = context.getResources().getConfiguration().getLocales(); in AutoReinflateContainer()
65 if (localeList != mLocaleList) { in onConfigurationChanged()
66 mLocaleList = localeList; in onConfigurationChanged()
/frameworks/base/core/java/android/app/assist/
DAssistStructure.java679 LocaleList mLocaleList; field in AssistStructure.ViewNode
757 mLocaleList = in.readParcelable(null); in ViewNode()
819 if (mLocaleList != null) { in writeSelfToParcel()
914 out.writeParcelable(mLocaleList, 0); in writeSelfToParcel()
1291 return mLocaleList; in getLocaleList()
1778 mNode.mLocaleList = localeList; in setLocaleList()