Lines Matching refs:other
132 void CopyFrom(const BitSet &other)
134 ASSERT(wordCount_ == other.wordCount_);
135 wordCount_ = other.wordCount_;
137 data_.inlineWord_ = other.data_.inlineWord_;
141 data_.words_[i] = other.data_.words_[i];
145 void CopyDataFrom(const BitSet &other)
147 ASSERT(wordCount_ >= other.wordCount_);
148 if (!other.UseWords()) {
150 data_.words_[0] = other.data_.inlineWord_;
152 data_.inlineWord_ = other.data_.inlineWord_;
156 for (size_t i = 0; i < other.wordCount_; i++) {
157 data_.words_[i] = other.data_.words_[i];