Lines Matching defs:intersectionBuckets
1646 std::vector<SmallVector<NestedMatch, 8>> &intersectionBuckets) {
1647 assert(intersectionBuckets.empty() && "Expected empty output");
1654 for (int i = 0, end = intersectionBuckets.size(); i < end; ++i) {
1658 intersectionBuckets[i].push_back(match);
1666 intersectionBuckets[i].push_back(match);
1676 intersectionBuckets.emplace_back();
1677 intersectionBuckets.back().push_back(match);
1714 std::vector<SmallVector<NestedMatch, 8>> intersectionBuckets;
1715 computeIntersectionBuckets(allMatches, intersectionBuckets);
1720 for (auto &intersectingMatches : intersectionBuckets) {