• Home
  • Raw
  • Download

Lines Matching refs:fPropSets

155         fPropSets[i] = NULL;  in RegexStaticSets()
158fPropSets[URX_ISWORD_SET] = new UnicodeSet(UnicodeString(TRUE, gIsWordPattern, -1), *status); in RegexStaticSets()
159fPropSets[URX_ISSPACE_SET] = new UnicodeSet(UnicodeString(TRUE, gIsSpacePattern, -1), *status); in RegexStaticSets()
160fPropSets[URX_GC_EXTEND] = new UnicodeSet(UnicodeString(TRUE, gGC_ExtendPattern, -1), *status); in RegexStaticSets()
161fPropSets[URX_GC_CONTROL] = new UnicodeSet(UnicodeString(TRUE, gGC_ControlPattern, -1), *status); in RegexStaticSets()
162fPropSets[URX_GC_L] = new UnicodeSet(UnicodeString(TRUE, gGC_LPattern, -1), *status); in RegexStaticSets()
163fPropSets[URX_GC_V] = new UnicodeSet(UnicodeString(TRUE, gGC_VPattern, -1), *status); in RegexStaticSets()
164fPropSets[URX_GC_T] = new UnicodeSet(UnicodeString(TRUE, gGC_TPattern, -1), *status); in RegexStaticSets()
165fPropSets[URX_GC_LV] = new UnicodeSet(UnicodeString(TRUE, gGC_LVPattern, -1), *status); in RegexStaticSets()
166fPropSets[URX_GC_LVT] = new UnicodeSet(UnicodeString(TRUE, gGC_LVTPattern, -1), *status); in RegexStaticSets()
169 …if (fPropSets[URX_ISWORD_SET] == NULL || fPropSets[URX_ISSPACE_SET] == NULL || fPropSets[URX_GC_EX… in RegexStaticSets()
170fPropSets[URX_GC_CONTROL] == NULL || fPropSets[URX_GC_L] == NULL || fPropSets[URX_GC_V] == NULL || in RegexStaticSets()
171fPropSets[URX_GC_T] == NULL || fPropSets[URX_GC_LV] == NULL || fPropSets[URX_GC_LVT] == NULL) { in RegexStaticSets()
191 fPropSets[URX_GC_NORMAL] = new UnicodeSet(0, UnicodeSet::MAX_VALUE); in RegexStaticSets()
193 if (fPropSets[URX_GC_NORMAL] == NULL) { in RegexStaticSets()
196 fPropSets[URX_GC_NORMAL]->remove(0xac00, 0xd7a4); in RegexStaticSets()
197 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_CONTROL]); in RegexStaticSets()
198 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_L]); in RegexStaticSets()
199 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_V]); in RegexStaticSets()
200 fPropSets[URX_GC_NORMAL]->removeAll(*fPropSets[URX_GC_T]); in RegexStaticSets()
205 if (fPropSets[i]) { in RegexStaticSets()
206 fPropSets[i]->compact(); in RegexStaticSets()
207 fPropSets8[i].init(fPropSets[i]); in RegexStaticSets()
230 delete fPropSets[i]; in RegexStaticSets()
231 fPropSets[i] = NULL; in RegexStaticSets()
243 delete fPropSets[i]; in ~RegexStaticSets()
244 fPropSets[i] = NULL; in ~RegexStaticSets()