Home | History | Annotate | Download | only in common

Lines Matching refs:bmpSet

25 #include "bmpset.h"
144 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0),
171 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0),
197 bmpSet(0),
221 bmpSet(0),
233 // *this = o except for bmpSet and stringSpan
258 delete bmpSet;
288 if (o.bmpSet == NULL) {
289 bmpSet = NULL;
291 bmpSet = new BMPSet(*o.bmpSet, list, len);
292 if (bmpSet == NULL) { // Check for memory allocation error.
408 if (bmpSet != NULL) {
409 return bmpSet->contains(c);
2122 bmpSet=new BMPSet(list, len);
2123 if (bmpSet == NULL) { // Check for memory allocation error.
2132 if(length>0 && bmpSet!=NULL) {
2133 return (int32_t)(bmpSet->span(s, s+length, spanCondition)-s);
2169 if(length>0 && bmpSet!=NULL) {
2170 return (int32_t)(bmpSet->spanBack(s, s+length, spanCondition)-s);
2206 if(length>0 && bmpSet!=NULL) {
2208 return (int32_t)(bmpSet->spanUTF8(s0, length, spanCondition)-s0);
2247 if(length>0 && bmpSet!=NULL) {
2249 return bmpSet->spanBackUTF8(s0, length, spanCondition);