Lines Matching refs:intersectionWithComplementIs

373   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()
403 intersectionWithComplementIs({3, 4, 5}, {2, 3, 4}, {5}); in TEST()
406 intersectionWithComplementIs({1, 2, 11, 12}, {3, 4, 13, 14}, {1, 2, 11, 12}); in TEST()
410 intersectionWithComplementIs({1, 2, 11, 12}, {1}, {2, 11, 12}); in TEST()
411 intersectionWithComplementIs({1, 2, 11, 12}, {2}, {1, 11, 12}); in TEST()
412 intersectionWithComplementIs({1, 2, 11, 12}, {11}, {1, 2, 12}); in TEST()
413 intersectionWithComplementIs({1, 2, 11, 12}, {12}, {1, 2, 11}); in TEST()
414 intersectionWithComplementIs({1, 2, 11, 12}, {1, 11}, {2, 12}); in TEST()
415 intersectionWithComplementIs({1, 2, 11, 12}, {1, 12}, {2, 11}); in TEST()
416 intersectionWithComplementIs({1, 2, 11, 12}, {2, 11}, {1, 12}); in TEST()
417 intersectionWithComplementIs({1, 2, 11, 12}, {2, 12}, {1, 11}); in TEST()
418 intersectionWithComplementIs({1, 2, 11, 12}, {1, 2, 11}, {12}); in TEST()
419 intersectionWithComplementIs({1, 2, 11, 12}, {1, 2, 12}, {11}); in TEST()
420 intersectionWithComplementIs({1, 2, 11, 12}, {1, 11, 12}, {2}); in TEST()
421 intersectionWithComplementIs({1, 2, 11, 12}, {2, 11, 12}, {1}); in TEST()
422 intersectionWithComplementIs({1, 2, 11, 12}, {0, 11, 12}, {1, 2}); in TEST()
423 intersectionWithComplementIs({1, 2, 11, 12}, {3, 11, 12}, {1, 2}); in TEST()
424 intersectionWithComplementIs({1, 2, 11, 12}, {1, 11, 13}, {2, 12}); in TEST()
425 intersectionWithComplementIs({1, 2, 11, 12}, {1, 10, 11}, {2, 12}); in TEST()
428 intersectionWithComplementIs({1, 2, 3, 4, 5, 6, 7, 8}, {2, 3, 4, 6, 7}, in TEST()