Lines Matching full:bits_
404 GrowableBitVector() : bits_(NULL) { }
408 return bits_->Contains(value);
413 bits_->Add(value);
420 return bits_ != NULL && bits_->length() > value;
425 int new_length = bits_ == NULL ? kInitialLength : bits_->length();
428 if (bits_ != NULL) new_bits->CopyFrom(*bits_);
429 bits_ = new_bits;
432 BitVector* bits_;