Lines Matching refs:other
64 bool operator==(const IndexIterator& other) const;
66 bool operator!=(const IndexIterator& other) const {
67 return !(*this == other);
116 BitVector(const BitVector& other) = delete;
117 BitVector& operator=(const BitVector& other) = delete;
119 BitVector(BitVector&& other) noexcept in BitVector() argument
120 : storage_(other.storage_), in BitVector()
121 storage_size_(other.storage_size_), in BitVector()
122 allocator_(other.allocator_), in BitVector()
123 expandable_(other.expandable_) { in BitVector()
124 other.storage_ = nullptr; in BitVector()
125 other.storage_size_ = 0u; in BitVector()
205 bool IsSubsetOf(const BitVector *other) const;