Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DLocaleList.java217 public LocaleList(@NonNull Locale topLocale, LocaleList otherLocales) { in LocaleList() argument
222 final int inputLength = (otherLocales == null) ? 0 : otherLocales.mList.length; in LocaleList()
225 if (topLocale.equals(otherLocales.mList[i])) { in LocaleList()
237 localeList[i + 1] = (Locale) otherLocales.mList[i].clone(); in LocaleList()
241 localeList[i + 1] = (Locale) otherLocales.mList[i].clone(); in LocaleList()
244 localeList[i] = (Locale) otherLocales.mList[i].clone(); in LocaleList()
/frameworks/base/core/java/android/app/
DLocaleConfig.java328 LocaleList otherLocales = other.mLocales; in isSameLocaleConfig() local
329 if (mLocales == null && otherLocales == null) { in isSameLocaleConfig()
331 } else if (mLocales != null && otherLocales != null) { in isSameLocaleConfig()
334 otherLocales.toLanguageTags().split(",")); in isSameLocaleConfig()