Searched defs:LocaleList (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/os/
H A DLocaleList.java35 * LocaleList is an immutable list of Locales, typically used to keep an ordered list of user
38 public final class LocaleList implements Parcelable { class in inherits:Parcelable
40 // This is a comma-separated list of the locales in the LocaleList created at construction time,
47 private static final LocaleList sEmptyLocaleList = new LocaleList();
60 * Returns whether the {@link LocaleList} contains no {@link Locale} items.
62 * @return {@code true} if this {@link LocaleList} has no {@link Locale} items, {@code false}
70 * Returns the number of {@link Locale} items in this {@link LocaleList}.
78 * Searches this {@link LocaleList} for the specified {@link Locale} and returns the index of
99 if (!(other instanceof LocaleList))
180 public LocaleList(@NonNull Locale... list) { method in class:LocaleList
215 public LocaleList(@NonNull Locale topLocale, LocaleList otherLocales) { method in class:LocaleList
[all...]
/frameworks/minikin/libs/minikin/
H A DLocale.h38 class LocaleList;
122 int calcScoreFor(const LocaleList& supported) const;
132 friend class LocaleList; // for LocaleList constructor
172 class LocaleList { class in namespace:minikin
174 explicit LocaleList(std::vector<Locale>&& locales);
175 LocaleList() function in class:minikin::LocaleList
179 LocaleList(LocaleList&&) = default;
206 LocaleList(cons
[all...]
H A DLocale.cpp23 #include "minikin/LocaleList.h"
376 int Locale::calcScoreFor(const LocaleList& supported) const {
419 LocaleList::LocaleList(std::vector<Locale>&& locales) : mLocales(std::move(locales)) { function in class:minikin::LocaleList

Completed in 602 milliseconds