Searched refs:BlockIndexIterator (Results 1 – 1 of 1) sorted by relevance
/external/skia/src/gpu/ |
D | GrTBlockList.h | 22 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;
|