Home | History | Annotate | Download | only in Support

Lines Matching refs:Roots

69   std::vector<change_ty> Roots;
203 // Compute the roots.
207 Roots.push_back(*it);
210 std::vector<change_ty> Worklist(Roots.begin(), Roots.end());
255 llvm::errs() << "Roots: [";
256 for (std::vector<change_ty>::const_iterator it = Roots.begin(),
257 ie = Roots.end(); it != ie; ++it) {
258 if (it != Roots.begin()) llvm::errs() << ", ";
311 // The current set of changes we are minimizing, starting at the roots.
312 changeset_ty CurrentSet(Roots.begin(), Roots.end());