Lines Matching refs:RegexStaticSets
141 RegexStaticSets *RegexStaticSets::gStaticSets = NULL;
144 RegexStaticSets::RegexStaticSets(UErrorCode *status) in RegexStaticSets() function in RegexStaticSets
237 RegexStaticSets::~RegexStaticSets() { in ~RegexStaticSets()
257 RegexStaticSets::cleanup(void) { in cleanup()
258 delete RegexStaticSets::gStaticSets; in cleanup()
259 RegexStaticSets::gStaticSets = NULL; in cleanup()
267 return RegexStaticSets::cleanup(); in regex_cleanup()
271 U_ASSERT(RegexStaticSets::gStaticSets == NULL); in initStaticSets()
273 RegexStaticSets::gStaticSets = new RegexStaticSets(&status); in initStaticSets()
275 delete RegexStaticSets::gStaticSets; in initStaticSets()
276 RegexStaticSets::gStaticSets = NULL; in initStaticSets()
278 if (RegexStaticSets::gStaticSets == NULL && U_SUCCESS(status)) { in initStaticSets()
284 void RegexStaticSets::initGlobals(UErrorCode *status) { in initGlobals()