Lines Matching refs:tmpSet
264 UnicodeSet *tmpSet = NULL; in setAllowedLocales() local
304 tmpSet = new UnicodeSet(0, 0x10ffff); in setAllowedLocales()
305 if (fAllowedLocales == NULL || tmpSet == NULL) { in setAllowedLocales()
309 tmpSet->freeze(); in setAllowedLocales()
311 fAllowedCharsSet = tmpSet; in setAllowedLocales()
331 tmpSet = static_cast<UnicodeSet *>(allowedChars.clone()); in setAllowedLocales()
333 if (tmpSet == NULL || tmpLocalesList == NULL) { in setAllowedLocales()
339 tmpSet->freeze(); in setAllowedLocales()
341 fAllowedCharsSet = tmpSet; in setAllowedLocales()
365 UnicodeSet tmpSet; in addScriptChars() local
368 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status); in addScriptChars()
369 allowedChars->addAll(tmpSet); in addScriptChars()