Home | History | Annotate | Download | only in common

Lines Matching refs:bmpSet

27 #include "bmpset.h"
146 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0),
173 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0),
199 bmpSet(0),
223 bmpSet(0),
235 // *this = o except for bmpSet and stringSpan
260 delete bmpSet;
290 if (o.bmpSet == NULL) {
291 bmpSet = NULL;
293 bmpSet = new BMPSet(*o.bmpSet, list, len);
294 if (bmpSet == NULL) { // Check for memory allocation error.
410 if (bmpSet != NULL) {
411 return bmpSet->contains(c);
2124 bmpSet=new BMPSet(list, len);
2125 if (bmpSet == NULL) { // Check for memory allocation error.
2134 if(length>0 && bmpSet!=NULL) {
2135 return (int32_t)(bmpSet->span(s, s+length, spanCondition)-s);
2171 if(length>0 && bmpSet!=NULL) {
2172 return (int32_t)(bmpSet->spanBack(s, s+length, spanCondition)-s);
2208 if(length>0 && bmpSet!=NULL) {
2210 return (int32_t)(bmpSet->spanUTF8(s0, length, spanCondition)-s0);
2246 if(length>0 && bmpSet!=NULL) {
2248 return bmpSet->spanBackUTF8(s0, length, spanCondition);