Home
last modified time | relevance | path

Searched refs:tmpSet (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4c/source/i18n/
Duspoof_impl.cpp141 UnicodeSet *tmpSet = NULL; in setAllowedLocales() local
181 tmpSet = new UnicodeSet(0, 0x10ffff); in setAllowedLocales()
182 if (fAllowedLocales == NULL || tmpSet == NULL) { in setAllowedLocales()
186 tmpSet->freeze(); in setAllowedLocales()
188 fAllowedCharsSet = tmpSet; in setAllowedLocales()
208 tmpSet = static_cast<UnicodeSet *>(allowedChars.clone()); in setAllowedLocales()
210 if (tmpSet == NULL || tmpLocalesList == NULL) { in setAllowedLocales()
216 tmpSet->freeze(); in setAllowedLocales()
218 fAllowedCharsSet = tmpSet; in setAllowedLocales()
242 UnicodeSet tmpSet; in addScriptChars() local
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DDominanceFrontier.h93 std::set<BasicBlock *> tmpSet; in compareDomSet() local
96 tmpSet.insert(*I); in compareDomSet()
102 if (tmpSet.erase(Node) == 0) in compareDomSet()
107 if (!tmpSet.empty()) in compareDomSet()
/external/llvm/include/llvm/Analysis/
DDominanceFrontierImpl.h69 std::set<BlockT *> tmpSet; in compareDomSet() local
71 tmpSet.insert(BB); in compareDomSet()
77 if (tmpSet.erase(Node) == 0) in compareDomSet()
82 if (!tmpSet.empty()) { in compareDomSet()
/external/icu/icu4c/source/test/cintltst/
Dspooftest.c402 USet *tmpSet; in TestUSpoofCAPI() local
408 tmpSet = uset_open(0, 0x10ffff); in TestUSpoofCAPI()
409 TEST_ASSERT(uset_equals(tmpSet, set)); in TestUSpoofCAPI()
416 uset_remove(tmpSet, goodLatin[1]); in TestUSpoofCAPI()
417 uspoof_setAllowedChars(sc, tmpSet, &status); in TestUSpoofCAPI()
419 uset_close(tmpSet); in TestUSpoofCAPI()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
DSpoofCheckerTest.java280 UnicodeSet tmpSet; in TestAllowedChars() local
285 tmpSet = new UnicodeSet(0, 0x10ffff); in TestAllowedChars()
286 assertEquals("", tmpSet, set); in TestAllowedChars()
289 tmpSet.remove(goodLatin.charAt(1)); in TestAllowedChars()
290 …sc = new SpoofChecker.Builder().setChecks(SpoofChecker.CHAR_LIMIT).setAllowedChars(tmpSet).build(); in TestAllowedChars()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
DSpoofCheckerTest.java281 UnicodeSet tmpSet; in TestAllowedChars() local
286 tmpSet = new UnicodeSet(0, 0x10ffff); in TestAllowedChars()
287 assertEquals("", tmpSet, set); in TestAllowedChars()
290 tmpSet.remove(goodLatin.charAt(1)); in TestAllowedChars()
291 …sc = new SpoofChecker.Builder().setChecks(SpoofChecker.CHAR_LIMIT).setAllowedChars(tmpSet).build(); in TestAllowedChars()
/external/valgrind/coregrind/
Dm_redir.c1087 OSet* tmpSet; in VG_() local
1110 tmpSet = VG_(OSetWord_Create)(dinfo_zalloc, "redir.rndD.1", dinfo_free); in VG_()
1136 VG_(OSetWord_Insert)( tmpSet, act->from_addr ); in VG_()
1147 VG_(OSetWord_ResetIter)( tmpSet ); in VG_()
1148 while ( VG_(OSetWord_Next)(tmpSet, &addr) ) { in VG_()
1154 VG_(OSetWord_Destroy)( tmpSet ); in VG_()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSpoofChecker.java720 UnicodeSet tmpSet = new UnicodeSet(); in addScriptChars() local
722 tmpSet.applyIntPropertyValue(UProperty.SCRIPT, scripts[i]); in addScriptChars()
723 allowedChars.addAll(tmpSet); in addScriptChars()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSpoofChecker.java680 UnicodeSet tmpSet = new UnicodeSet(); in addScriptChars() local
682 tmpSet.applyIntPropertyValue(UProperty.SCRIPT, scripts[i]); in addScriptChars()
683 allowedChars.addAll(tmpSet); in addScriptChars()
/external/r8/src/test/java/com/android/tools/r8/
DR8RunArtTestsTest.java940 Set<String> tmpSet = in getTestsMap() local
943 failsWithArt.addAll(tmpSet); in getTestsMap()