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();
629 this->makeSequence(this->otherVector, 1, 3);
631 EXPECT_TRUE(this->theVector == this->otherVector);
632 EXPECT_FALSE(this->theVector != this->otherVector);
634 this->otherVector.clear();
635 this->makeSequence(this->otherVector, 2, 4);
637 EXPECT_FALSE(this->theVector == this->otherVector);
638 EXPECT_TRUE(this->theVector != this->otherVector);
679 VectorT2 otherVector;
703 this->otherVector.push_back(Constructable(I));
705 const Constructable *OrigDataPtr = this->otherVector.data();
709 std::move(static_cast<SmallVectorImpl<Constructable>&>(this->otherVector));
716 this->otherVector.clear();
720 // If the source vector (otherVector) was in small-mode, assert that we just
722 EXPECT_TRUE(this->NumBuiltinElts(this->otherVector) == 4 ||