Lines Matching refs:moved
124 // hoping to extend by reordering. Let "moved tasks" be the ones we want to move to extend the
133 // We can't reorder if any moved task depends on anything in the cluster.
135 for (GrRenderTask* moved = movedHead; moved; moved = moved->fNext) {
137 if (depends_on(moved, passed)) {
143 // Grab the moved tasks and pull them before clusterHead.
144 for (GrRenderTask* moved = movedHead; moved;) {
146 describe_task(moved).c_str(),
149 GrRenderTask* nextMoved = moved->fNext;
150 llist->remove(moved);
151 llist->addBefore(moved, clusterHead);
152 moved = nextMoved;