Searched refs:tempSet (Results 1 – 5 of 5) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckChildren.java | 17 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/ |
D | uspoof_impl.cpp | 183 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/ |
D | SpoofChecker.java | 713 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/ |
D | SpoofChecker.java | 670 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/ |
D | CldrUtility.java | 517 LinkedHashSet tempSet = new LinkedHashSet<>(sourceCollection); // copy contents in protectCollectionX() local 520 for (Object item : tempSet) { in protectCollectionX()
|