Lines Matching refs:bmpSet
146 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
173 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
199 bmpSet(0), in UnicodeSet()
223 bmpSet(0), in UnicodeSet()
260 delete bmpSet; in ~UnicodeSet()
290 if (o.bmpSet == NULL) { in operator =()
291 bmpSet = NULL; in operator =()
293 bmpSet = new BMPSet(*o.bmpSet, list, len); in operator =()
294 if (bmpSet == NULL) { // Check for memory allocation error. in operator =()
410 if (bmpSet != NULL) { in contains()
411 return bmpSet->contains(c); in contains()
1479 : len(1), capacity(1+START_EXTRA), list(0), bmpSet(0), buffer(0), in UnicodeSet()
2201 bmpSet=new BMPSet(list, len); in freeze()
2202 if (bmpSet == NULL) { // Check for memory allocation error. in freeze()
2211 if(length>0 && bmpSet!=NULL) { in span()
2212 return (int32_t)(bmpSet->span(s, s+length, spanCondition)-s); in span()
2248 if(length>0 && bmpSet!=NULL) { in spanBack()
2249 return (int32_t)(bmpSet->spanBack(s, s+length, spanCondition)-s); in spanBack()
2285 if(length>0 && bmpSet!=NULL) { in spanUTF8()
2287 return (int32_t)(bmpSet->spanUTF8(s0, length, spanCondition)-s0); in spanUTF8()
2323 if(length>0 && bmpSet!=NULL) { in spanBackUTF8()
2325 return bmpSet->spanBackUTF8(s0, length, spanCondition); in spanBackUTF8()