Home | History | Annotate | Download | only in src

Lines Matching full:bits_

207         : it_(target->bits_ == NULL
209 : target->bits_) { }
217 GrowableBitVector() : bits_(NULL) { }
219 : bits_(new(zone) BitVector(length, zone)) { }
223 return bits_->Contains(value);
228 bits_->Add(value);
237 void Clear() { if (bits_ != NULL) bits_->Clear(); }
243 return bits_ != NULL && bits_->length() > value;
248 int new_length = bits_ == NULL ? kInitialLength : bits_->length();
251 if (bits_ != NULL) new_bits->CopyFrom(*bits_);
252 bits_ = new_bits;
255 BitVector* bits_;