Searched refs:elementsMatch (Results 1 – 1 of 1) sorted by relevance
/external/llvm-project/llvm/unittests/ADT/ |
D | CoalescingBitVectorTest.cpp | 19 bool elementsMatch(const UBitVec &BV, std::initializer_list<unsigned> List) { in elementsMatch() function 77 EXPECT_TRUE(elementsMatch(BV1, {0})); in TEST() 78 EXPECT_TRUE(elementsMatch(BV2, {0})); in TEST() 81 EXPECT_TRUE(elementsMatch(BV1, {0})); in TEST() 82 EXPECT_TRUE(elementsMatch(BV2, {0})); in TEST() 109 EXPECT_TRUE(elementsMatch(BV, {0, 1, 2})); in TEST() 112 EXPECT_TRUE(elementsMatch(BV, {0, 1, 2, 4, 5, 6})); in TEST() 115 EXPECT_TRUE(elementsMatch(BV, {0, 1, 2, 3, 4, 5, 6})); in TEST() 118 EXPECT_TRUE(elementsMatch(BV, {0, 1, 2, 3, 4, 5, 6, 10})); in TEST() 125 EXPECT_TRUE(elementsMatch(BV, {0, 1, 2, 4, 5, 6, 10, 1000, 1001, 1002})); in TEST() [all …]
|