Home
last modified time | relevance | path

Searched refs:BlockIndexIterator (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/gpu/
DGrTBlockList.h22 class BlockIndexIterator; variable
271 using Iter = BlockIndexIterator<T&, true, false, &First, &Last, &Increment, &GetItem>;
272 using CIter = BlockIndexIterator<const T&, true, true, &First, &Last, &Increment, &GetItem>;
273 using RIter = BlockIndexIterator<T&, false, false, &Last, &First, &Decrement, &GetItem>;
274 using CRIter = BlockIndexIterator<const T&, false, true, &Last, &First, &Decrement, &GetItem>;
381 class BlockIndexIterator {
384 BlockIndexIterator(BlockIter iter) : fBlockIter(iter) {} in BlockIndexIterator() function
411 friend BlockIndexIterator;