Lines Matching refs:tmpSet
129 UnicodeSet *tmpSet = NULL; in setAllowedLocales() local
169 tmpSet = new UnicodeSet(0, 0x10ffff); in setAllowedLocales()
170 if (fAllowedLocales == NULL || tmpSet == NULL) { in setAllowedLocales()
174 tmpSet->freeze(); in setAllowedLocales()
176 fAllowedCharsSet = tmpSet; in setAllowedLocales()
196 tmpSet = allowedChars.clone(); in setAllowedLocales()
198 if (tmpSet == NULL || tmpLocalesList == NULL) { in setAllowedLocales()
204 tmpSet->freeze(); in setAllowedLocales()
206 fAllowedCharsSet = tmpSet; in setAllowedLocales()
230 UnicodeSet tmpSet; in addScriptChars() local
233 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status); in addScriptChars()
234 allowedChars->addAll(tmpSet); in addScriptChars()