Lines Matching refs:tmpSet
266 UnicodeSet *tmpSet = NULL; in setAllowedLocales() local
306 tmpSet = new UnicodeSet(0, 0x10ffff); in setAllowedLocales()
307 if (fAllowedLocales == NULL || tmpSet == NULL) { in setAllowedLocales()
311 tmpSet->freeze(); in setAllowedLocales()
313 fAllowedCharsSet = tmpSet; in setAllowedLocales()
333 tmpSet = static_cast<UnicodeSet *>(allowedChars.clone()); in setAllowedLocales()
335 if (tmpSet == NULL || tmpLocalesList == NULL) { in setAllowedLocales()
341 tmpSet->freeze(); in setAllowedLocales()
343 fAllowedCharsSet = tmpSet; in setAllowedLocales()
367 UnicodeSet tmpSet; in addScriptChars() local
370 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status); in addScriptChars()
371 allowedChars->addAll(tmpSet); in addScriptChars()