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<String, String>(); field in CheckChildren
35 tempSet.clear(); in handleCheck()
44 tempSet.put(immediateChildren[i].getLocaleID(), otherValue); in handleCheck()
46 tempSet.put(immediateChildren[i].getLocaleID(), value); in handleCheck()
49 if (tempSet.values().contains(value)) return this; in handleCheck()
54 ….setMessage("Value always overridden in children: {0}", new Object[] { tempSet.keySet().toString()… in handleCheck()
56 tempSet.clear(); // free for gc in handleCheck()
/external/icu/icu4c/source/i18n/
Duspoof_impl.cpp195 UnicodeSet tempSet; in setAllowedLocales() local
196 tempSet.applyIntPropertyValue(UCHAR_SCRIPT, USCRIPT_COMMON, status); in setAllowedLocales()
197 allowedChars.addAll(tempSet); in setAllowedLocales()
198 tempSet.applyIntPropertyValue(UCHAR_SCRIPT, USCRIPT_INHERITED, status); in setAllowedLocales()
199 allowedChars.addAll(tempSet); in setAllowedLocales()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java669 UnicodeSet tempSet = new UnicodeSet(); in setAllowedLocales() local
670 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.COMMON); in setAllowedLocales()
671 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
672 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.INHERITED); in setAllowedLocales()
673 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java711 UnicodeSet tempSet = new UnicodeSet(); in setAllowedLocales() local
712 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.COMMON); in setAllowedLocales()
713 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
714 tempSet.applyIntPropertyValue(UProperty.SCRIPT, UScript.INHERITED); in setAllowedLocales()
715 fAllowedCharsSet.addAll(tempSet); in setAllowedLocales()
/external/cldr/tools/java/org/unicode/cldr/util/
DCldrUtility.java500 LinkedHashSet tempSet = new LinkedHashSet<>(sourceCollection); // copy contents in protectCollectionX() local
503 for (Object item : tempSet) { in protectCollectionX()