Lines Matching refs:other
168 void IndexMap::Merge(IndexMap* other) in Merge() argument
170 if (indexType_ == INDEX_TYPE_ID && other->indexType_ == INDEX_TYPE_ID) { in Merge()
171 …if ((other->start_ >= start_ && other->start_ <= end_) || (start_ >= other->start_ && start_ <= ot… in Merge()
172 start_ = std::min(start_, other->start_); in Merge()
173 end_ = std::max(end_, other->end_); in Merge()
174 } else if (start_ > other->start_) { in Merge()
176 other->CovertToIndexMap(); in Merge()
177 const std::vector<TableRowId> b = other->rowIndex_; in Merge()
187 other->CovertToIndexMap(); in Merge()
188 std::vector<TableRowId> c = other->rowIndex_; in Merge()
200 other->CovertToIndexMap(); in Merge()
201 const std::vector<TableRowId> b = other->rowIndex_; in Merge()