Home | History | Annotate | Download | only in ADT

Lines Matching full:othervector

200   VectorT otherVector;
391 std::swap(this->theVector, this->otherVector);
394 this->assertValuesInOrder(this->otherVector, 2u, 1, 2);
401 this->makeSequence(this->otherVector, 2, 3);
404 this->theVector.append(this->otherVector.begin(), this->otherVector.end());
436 this->otherVector.push_back(Constructable(2));
437 this->otherVector.push_back(Constructable(3));
440 this->theVector = std::move(this->otherVector);
447 this->otherVector.clear();
631 this->makeSequence(this->otherVector, 1, 3);
633 EXPECT_TRUE(this->theVector == this->otherVector);
634 EXPECT_FALSE(this->theVector != this->otherVector);
636 this->otherVector.clear();
637 this->makeSequence(this->otherVector, 2, 4);
639 EXPECT_FALSE(this->theVector == this->otherVector);
640 EXPECT_TRUE(this->theVector != this->otherVector);
681 VectorT2 otherVector;
705 this->otherVector.push_back(Constructable(I));
707 const Constructable *OrigDataPtr = this->otherVector.data();
711 std::move(static_cast<SmallVectorImpl<Constructable>&>(this->otherVector));
718 this->otherVector.clear();
722 // If the source vector (otherVector) was in small-mode, assert that we just
724 EXPECT_TRUE(this->NumBuiltinElts(this->otherVector) == 4 ||