Home
last modified time | relevance | path

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

/external/llvm-project/llvm/unittests/ADT/
DCoalescingBitVectorTest.cpp310 auto testIntersectionSymmetrically = [&](std::initializer_list<unsigned> LHS, in TEST() local
318 testIntersectionSymmetrically({}, {}, {}); in TEST()
319 testIntersectionSymmetrically({1}, {1}, {1}); in TEST()
320 testIntersectionSymmetrically({1}, {2}, {}); in TEST()
323 testIntersectionSymmetrically({1, 2}, {1, 2}, {1, 2}); in TEST()
324 testIntersectionSymmetrically({1, 2, 11, 12}, {1, 2, 11, 12}, {1, 2, 11, 12}); in TEST()
328 testIntersectionSymmetrically({2, 3, 4}, {1, 2, 3}, {2, 3}); in TEST()
329 testIntersectionSymmetrically({2, 3, 4}, {2, 3, 4}, {2, 3, 4}); in TEST()
330 testIntersectionSymmetrically({2, 3, 4}, {3, 4, 5}, {3, 4}); in TEST()
333 testIntersectionSymmetrically({1, 2, 11, 12}, {3, 4, 13, 14}, {}); in TEST()
[all …]