Home | History | Annotate | Download | only in gpu

Lines Matching refs:Iter

47     class Iter;
164 friend class Iter;
245 * GrTRecorder<TBase, TAlign>::Iter iter(recorder);
246 * while (iter.next()) {
247 * iter->doSomething();
251 class GrTRecorder<TBase, TAlign>::Iter {
253 Iter(GrTRecorder& recorder) : fBlock(recorder.fHeadBlock), fPosition(0), fItem(nullptr) {}
285 * Iterates through a recorder in reverse, from back to front. This version mirrors "Iter",
335 Iter iter(*this);
336 while (iter.next()) {
337 iter->~TBase();