Lines Matching refs:other
52 bool operator==(const IndexIterator& other) const;
54 bool operator!=(const IndexIterator& other) const {
55 return !(*this == other);
104 BitVector(const BitVector& other) = delete;
105 BitVector& operator=(const BitVector& other) = delete;
107 BitVector(BitVector&& other) in BitVector() argument
108 : storage_(other.storage_), in BitVector()
109 storage_size_(other.storage_size_), in BitVector()
110 allocator_(other.allocator_), in BitVector()
111 expandable_(other.expandable_) { in BitVector()
112 other.storage_ = nullptr; in BitVector()
113 other.storage_size_ = 0u; in BitVector()
193 bool IsSubsetOf(const BitVector *other) const;