Lines Matching refs:allIdxs
234 std::stack<size_t> allIdxs;
235 allIdxs.emplace(idx);
237 while (pIdx != allIdxs.top()) {
238 allIdxs.emplace(pIdx);
242 while (!allIdxs.empty()) {
243 if (semiDom_[minIdx_[allIdxs.top()]] > semiDom_[minIdx_[pIdx]]) {
244 minIdx_[allIdxs.top()] = minIdx_[pIdx];
246 parentIdx_[allIdxs.top()] = unionFindSetRoot;
247 pIdx = allIdxs.top();
248 allIdxs.pop();