Lines Matching refs:otherVector

217   VectorT otherVector;  member in __anon4a72bbf00111::SmallVectorTest
476 std::swap(this->theVector, this->otherVector); in TYPED_TEST()
479 this->assertValuesInOrder(this->otherVector, 2u, 1, 2); in TYPED_TEST()
486 this->makeSequence(this->otherVector, 2, 3); in TYPED_TEST()
489 this->theVector.append(this->otherVector.begin(), this->otherVector.end()); in TYPED_TEST()
533 SmallVector<Constructable, 3> otherVector = {7, 7}; in TYPED_TEST() local
535 this->theVector.append(otherVector); in TYPED_TEST()
570 SmallVector<Constructable, 3> otherVector = {7, 7}; in TYPED_TEST() local
572 this->theVector.assign(otherVector); in TYPED_TEST()
585 this->otherVector.push_back(Constructable(2)); in TYPED_TEST()
586 this->otherVector.push_back(Constructable(3)); in TYPED_TEST()
589 this->theVector = std::move(this->otherVector); in TYPED_TEST()
596 this->otherVector.clear(); in TYPED_TEST()
789 this->makeSequence(this->otherVector, 1, 3); in TYPED_TEST()
791 EXPECT_TRUE(this->theVector == this->otherVector); in TYPED_TEST()
792 EXPECT_FALSE(this->theVector != this->otherVector); in TYPED_TEST()
794 this->otherVector.clear(); in TYPED_TEST()
795 this->makeSequence(this->otherVector, 2, 4); in TYPED_TEST()
797 EXPECT_FALSE(this->theVector == this->otherVector); in TYPED_TEST()
798 EXPECT_TRUE(this->theVector != this->otherVector); in TYPED_TEST()
806 this->otherVector = {1, 4}; in TYPED_TEST()
808 EXPECT_TRUE(this->theVector < this->otherVector); in TYPED_TEST()
809 EXPECT_TRUE(this->theVector <= this->otherVector); in TYPED_TEST()
810 EXPECT_FALSE(this->theVector > this->otherVector); in TYPED_TEST()
811 EXPECT_FALSE(this->theVector >= this->otherVector); in TYPED_TEST()
813 EXPECT_FALSE(this->otherVector < this->theVector); in TYPED_TEST()
814 EXPECT_FALSE(this->otherVector <= this->theVector); in TYPED_TEST()
815 EXPECT_TRUE(this->otherVector > this->theVector); in TYPED_TEST()
816 EXPECT_TRUE(this->otherVector >= this->theVector); in TYPED_TEST()
818 this->otherVector = {1, 2, 4}; in TYPED_TEST()
820 EXPECT_FALSE(this->theVector < this->otherVector); in TYPED_TEST()
821 EXPECT_TRUE(this->theVector <= this->otherVector); in TYPED_TEST()
822 EXPECT_FALSE(this->theVector > this->otherVector); in TYPED_TEST()
823 EXPECT_TRUE(this->theVector >= this->otherVector); in TYPED_TEST()
825 EXPECT_FALSE(this->otherVector < this->theVector); in TYPED_TEST()
826 EXPECT_TRUE(this->otherVector <= this->theVector); in TYPED_TEST()
827 EXPECT_FALSE(this->otherVector > this->theVector); in TYPED_TEST()
828 EXPECT_TRUE(this->otherVector >= this->theVector); in TYPED_TEST()
869 VectorT2 otherVector; member in __anon4a72bbf00111::DualSmallVectorsTest
893 this->otherVector.push_back(Constructable(I)); in TYPED_TEST()
895 const Constructable *OrigDataPtr = this->otherVector.data(); in TYPED_TEST()
899 std::move(static_cast<SmallVectorImpl<Constructable>&>(this->otherVector)); in TYPED_TEST()
906 this->otherVector.clear(); in TYPED_TEST()
912 EXPECT_TRUE(this->NumBuiltinElts(this->otherVector) == 4 || in TYPED_TEST()