Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/test/
DCheckChildren.java17 Map<String, String> tempSet = new HashMap<>(); field in CheckChildren
36 tempSet.clear(); in handleCheck()
45 tempSet.put(immediateChildren[i].getLocaleID(), otherValue); in handleCheck()
47 tempSet.put(immediateChildren[i].getLocaleID(), value); in handleCheck()
50 if (tempSet.values().contains(value)) return this; in handleCheck()
55 ….setMessage("Value always overridden in children: {0}", new Object[] { tempSet.keySet().toString()… in handleCheck()
57 tempSet.clear(); // free for gc in handleCheck()
/external/icu/icu4c/source/i18n/
Duspoof_impl.cpp183 UnicodeSet tempSet; in setAllowedLocales() local
184 tempSet.applyIntPropertyValue(UCHAR_SCRIPT, USCRIPT_COMMON, status); in setAllowedLocales()
185 allowedChars.addAll(tempSet); in setAllowedLocales()
186 tempSet.applyIntPropertyValue(UCHAR_SCRIPT, USCRIPT_INHERITED, status); in setAllowedLocales()
187 allowedChars.addAll(tempSet); in setAllowedLocales()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java713 UnicodeSet tempSet = new UnicodeSet(); in setAllowedLocales() local
714 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.COMMON); in setAllowedLocales()
715 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
716 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.INHERITED); in setAllowedLocales()
717 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java670 UnicodeSet tempSet = new UnicodeSet(); in setAllowedLocales() local
671 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.COMMON); in setAllowedLocales()
672 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
673 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.INHERITED); in setAllowedLocales()
674 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
/external/cldr/tools/java/org/unicode/cldr/util/
DCldrUtility.java517 LinkedHashSet tempSet = new LinkedHashSet<>(sourceCollection); // copy contents in protectCollectionX() local
520 for (Object item : tempSet) { in protectCollectionX()