Home | History | Annotate | Download | only in src

Lines Matching defs:BitVector

43 class BitVector: public ZoneObject {
45 // Iterator for the elements of this BitVector.
48 explicit Iterator(BitVector* target)
82 BitVector* target_;
87 friend class BitVector;
90 explicit BitVector(int length)
98 BitVector(const BitVector& other)
109 BitVector& operator=(const BitVector& rhs) {
114 void CopyFrom(const BitVector& other) {
140 void Union(const BitVector& other) {
147 bool UnionIsChanged(const BitVector& other) {
158 void Intersect(const BitVector& other) {
165 void Subtract(const BitVector& other) {
185 bool Equals(const BitVector& other) {
370 BitVector av_;