Home
last modified time | relevance | path

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

/external/llvm-project/llvm/unittests/ADT/
DCoalescingBitVectorTest.cpp373 auto intersectionWithComplementIs = in TEST() local
389 intersectionWithComplementIs({}, {}, {}); in TEST()
390 intersectionWithComplementIs({1}, {1}, {}); in TEST()
391 intersectionWithComplementIs({1}, {2}, {1}); in TEST()
394 intersectionWithComplementIs({1, 2}, {1, 2}, {}); in TEST()
395 intersectionWithComplementIs({1, 2, 11, 12}, {1, 2, 11, 12}, {}); in TEST()
399 intersectionWithComplementIs({2, 3, 4}, {1, 2, 3}, {4}); in TEST()
400 intersectionWithComplementIs({2, 3, 4}, {2, 3, 4}, {}); in TEST()
401 intersectionWithComplementIs({2, 3, 4}, {3, 4, 5}, {2}); in TEST()
402 intersectionWithComplementIs({1, 2, 3}, {2, 3, 4}, {1}); in TEST()
[all …]