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()
2124 bmpSet=new BMPSet(list, len); in freeze()
2125 if (bmpSet == NULL) { // Check for memory allocation error. in freeze()
2134 if(length>0 && bmpSet!=NULL) { in span()
2135 return (int32_t)(bmpSet->span(s, s+length, spanCondition)-s); in span()
2171 if(length>0 && bmpSet!=NULL) { in spanBack()
2172 return (int32_t)(bmpSet->spanBack(s, s+length, spanCondition)-s); in spanBack()
2208 if(length>0 && bmpSet!=NULL) { in spanUTF8()
2210 return (int32_t)(bmpSet->spanUTF8(s0, length, spanCondition)-s0); in spanUTF8()
2246 if(length>0 && bmpSet!=NULL) { in spanBackUTF8()
2248 return bmpSet->spanBackUTF8(s0, length, spanCondition); in spanBackUTF8()