Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/inputmethod/
DSystemLocaleWrapper.java68 void onLocaleChanged(@NonNull LocaleList prevLocales, @NonNull LocaleList newLocales); in onLocaleChanged() argument
101 final LocaleList newLocales = mContext.getResources().getConfiguration().getLocales(); in onReceive() local
102 final LocaleList prevLocales = sSystemLocale.getAndSet(newLocales); in onReceive()
103 if (!Objects.equals(newLocales, prevLocales)) { in onReceive()
104 mCallback.onLocaleChanged(prevLocales, newLocales); in onReceive()
DInputMethodManagerService.java842 void onActionLocaleChanged(@NonNull LocaleList prevLocales, @NonNull LocaleList newLocales) { in onActionLocaleChanged() argument
844 Slog.d(TAG, "onActionLocaleChanged prev=" + prevLocales + " new=" + newLocales); in onActionLocaleChanged()
/frameworks/base/telephony/java/android/telephony/mbms/
DServiceInfo.java52 public ServiceInfo(Map<Locale, String> newNames, String newClassName, List<Locale> newLocales, in ServiceInfo() argument
55 || newLocales == null || newServiceId == null in ServiceInfo()
62 if (newLocales.size() > MAP_LIMIT) { in ServiceInfo()
63 throw new RuntimeException("bad locales length " + newLocales.size()); in ServiceInfo()
69 locales = new ArrayList(newLocales); in ServiceInfo()
DFileServiceInfo.java39 List<Locale> newLocales, String newServiceId, Date start, Date end, in FileServiceInfo() argument
41 super(newNames, newClassName, newLocales, newServiceId, start, end); in FileServiceInfo()
/frameworks/base/services/core/java/com/android/server/locales/
DAppLocaleChangedAtomRecord.java47 void setNewLocales(String newLocales) { in setNewLocales() argument
48 this.mNewLocales = convertEmptyLocales(newLocales); in setNewLocales()