Home | History | Annotate | Download | only in core

Lines Matching refs:Iter

362     class Iter {
365 kBottom_IterStart = SkDeque::Iter::kFront_IterStart,
366 kTop_IterStart = SkDeque::Iter::kBack_IterStart
372 Iter();
374 Iter(const SkClipStack& stack, IterStart startLoc);
396 SkDeque::Iter fIter;
401 * It inherits privately from Iter to prevent access to reverse iteration.
403 class B2TIter : private Iter {
408 * Wrap Iter's 2 parameter ctor to force initialization to the
415 using Iter::next;
418 * Wrap Iter::reset to force initialization to the
427 typedef Iter INHERITED;
451 friend class Iter;