Lines Matching refs:otherVector
200 VectorT otherVector; member in __anon2392e2010111::SmallVectorTest
391 std::swap(this->theVector, this->otherVector); in TYPED_TEST()
394 this->assertValuesInOrder(this->otherVector, 2u, 1, 2); in TYPED_TEST()
401 this->makeSequence(this->otherVector, 2, 3); in TYPED_TEST()
404 this->theVector.append(this->otherVector.begin(), this->otherVector.end()); in TYPED_TEST()
436 this->otherVector.push_back(Constructable(2)); in TYPED_TEST()
437 this->otherVector.push_back(Constructable(3)); in TYPED_TEST()
440 this->theVector = std::move(this->otherVector); in TYPED_TEST()
447 this->otherVector.clear(); in TYPED_TEST()
631 this->makeSequence(this->otherVector, 1, 3); in TYPED_TEST()
633 EXPECT_TRUE(this->theVector == this->otherVector); in TYPED_TEST()
634 EXPECT_FALSE(this->theVector != this->otherVector); in TYPED_TEST()
636 this->otherVector.clear(); in TYPED_TEST()
637 this->makeSequence(this->otherVector, 2, 4); in TYPED_TEST()
639 EXPECT_FALSE(this->theVector == this->otherVector); in TYPED_TEST()
640 EXPECT_TRUE(this->theVector != this->otherVector); in TYPED_TEST()
681 VectorT2 otherVector; member in __anon2392e2010111::DualSmallVectorsTest
705 this->otherVector.push_back(Constructable(I)); in TYPED_TEST()
707 const Constructable *OrigDataPtr = this->otherVector.data(); in TYPED_TEST()
711 std::move(static_cast<SmallVectorImpl<Constructable>&>(this->otherVector)); in TYPED_TEST()
718 this->otherVector.clear(); in TYPED_TEST()
724 EXPECT_TRUE(this->NumBuiltinElts(this->otherVector) == 4 || in TYPED_TEST()