Home
last modified time | relevance | path

Searched refs:fAllowedLocales (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java475 final Set<ULocale> fAllowedLocales = new LinkedHashSet<>(); // The list of allowed locales. field in SpoofChecker.Builder
502 fAllowedLocales.addAll(src.fAllowedLocales); in Builder()
532 result.fAllowedLocales = new HashSet<>(this.fAllowedLocales); in build()
660 fAllowedLocales.clear(); in setAllowedLocales()
676 fAllowedLocales.clear(); in setAllowedLocales()
677 fAllowedLocales.addAll(locales); in setAllowedLocales()
733 fAllowedLocales.clear(); in setAllowedChars()
1123 return Collections.unmodifiableSet(fAllowedLocales);
1133 HashSet<Locale> locales = new HashSet<>(fAllowedLocales.size());
1134 for (ULocale uloc : fAllowedLocales) {
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java509 final Set<ULocale> fAllowedLocales = new LinkedHashSet<>(); // The list of allowed locales. field in SpoofChecker.Builder
539 fAllowedLocales.addAll(src.fAllowedLocales); in Builder()
570 result.fAllowedLocales = new HashSet<>(this.fAllowedLocales); in build()
702 fAllowedLocales.clear(); in setAllowedLocales()
718 fAllowedLocales.clear(); in setAllowedLocales()
719 fAllowedLocales.addAll(locales); in setAllowedLocales()
777 fAllowedLocales.clear(); in setAllowedChars()
1171 return Collections.unmodifiableSet(fAllowedLocales);
1182 HashSet<Locale> locales = new HashSet<>(fAllowedLocales.size());
1183 for (ULocale uloc : fAllowedLocales) {
[all …]
/external/icu/icu4c/source/i18n/
Duspoof_impl.cpp59 fAllowedLocales = NULL; in construct()
66 fAllowedLocales = uprv_strdup(""); in construct()
67 if (fAllowedCharsSet == NULL || fAllowedLocales == NULL) { in construct()
78 fAllowedLocales(NULL) { in SpoofImpl()
88 fAllowedLocales = uprv_strdup(src.fAllowedLocales); in SpoofImpl()
89 if (fAllowedCharsSet == NULL || fAllowedLocales == NULL) { in SpoofImpl()
102 uprv_free((void *)fAllowedLocales); in ~SpoofImpl()
179 uprv_free((void *)fAllowedLocales); in setAllowedLocales()
180 fAllowedLocales = uprv_strdup(""); in setAllowedLocales()
182 if (fAllowedLocales == NULL || tmpSet == NULL) { in setAllowedLocales()
[all …]
Duspoof_impl.h107 const char *fAllowedLocales; // The list of allowed locales. variable