Lines Matching refs:llist
44 const SkTInternalLList<GrRenderTask>& llist) {
47 for (GrRenderTask* t : llist) {
56 // Check that llist has the same entries as the input.
90 static bool task_cluster_visit(GrRenderTask* task, SkTInternalLList<GrRenderTask>* llist,
117 if (clusterTail == llist->tail()) {
150 llist->remove(moved);
151 llist->addBefore(moved, clusterHead);
158 SkTInternalLList<GrRenderTask>* llist) {
159 SkASSERT(llist->isEmpty());
170 didReorder |= task_cluster_visit(t.get(), llist, &lastTaskMap);
171 llist->addToTail(t.get());
172 CLUSTER_DEBUGF("Cluster: Output order is now: %s\n", describe_tasks(*llist).c_str());
177 validate(input, *llist);