Home
last modified time | relevance | path

Searched refs:otherVector (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/unittests/ADT/
DSmallVectorTest.cpp96 VectorType otherVector; member in __anon46813bad0111::SmallVectorTest
286 std::swap(theVector, otherVector); in TEST_F()
289 assertValuesInOrder(otherVector, 2u, 1, 2); in TEST_F()
296 makeSequence(otherVector, 2, 3); in TEST_F()
299 theVector.append(otherVector.begin(), otherVector.end()); in TEST_F()
372 makeSequence(otherVector, 1, 3); in TEST_F()
374 EXPECT_TRUE(theVector == otherVector); in TEST_F()
375 EXPECT_FALSE(theVector != otherVector); in TEST_F()
377 otherVector.clear(); in TEST_F()
378 makeSequence(otherVector, 2, 4); in TEST_F()
[all …]
/external/llvm/unittests/ADT/
DSmallVectorTest.cpp200 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()
[all …]