Lines Matching defs:next
61 Block* next = head->fNext;
65 head = next;
246 // Due to how reset and next work, next actually returns the current element
247 // pointed to by fPos and then updates fPos to point to the next one.
248 void* SkDeque::Iter::next() {
251 if (pos) { // if we were valid, try to move to the next setting
252 char* next = pos + fElemSize;
253 SkASSERT(next <= fCurBlock->fEnd);
254 if (next == fCurBlock->fEnd) { // exhausted this chunk, move to next
258 next = fCurBlock ? fCurBlock->fBegin : nullptr;
260 fPos = next;
265 // Like next, prev actually returns the current element pointed to by fPos and