Lines Matching refs:RegexStaticSets
143 RegexStaticSets *RegexStaticSets::gStaticSets = NULL;
146 RegexStaticSets::RegexStaticSets(UErrorCode *status) in RegexStaticSets() function in RegexStaticSets
239 RegexStaticSets::~RegexStaticSets() { in ~RegexStaticSets()
259 RegexStaticSets::cleanup(void) { in cleanup()
260 delete RegexStaticSets::gStaticSets; in cleanup()
261 RegexStaticSets::gStaticSets = NULL; in cleanup()
269 return RegexStaticSets::cleanup(); in regex_cleanup()
273 U_ASSERT(RegexStaticSets::gStaticSets == NULL); in initStaticSets()
275 RegexStaticSets::gStaticSets = new RegexStaticSets(&status); in initStaticSets()
277 delete RegexStaticSets::gStaticSets; in initStaticSets()
278 RegexStaticSets::gStaticSets = NULL; in initStaticSets()
280 if (RegexStaticSets::gStaticSets == NULL && U_SUCCESS(status)) { in initStaticSets()
286 void RegexStaticSets::initGlobals(UErrorCode *status) { in initGlobals()