Home | History | Annotate | Download | only in core

Lines Matching refs:fCurrentIndex

35         explicit Iter(SkTDynamicHash* hash) : fHash(hash), fCurrentIndex(-1) {
40 SkASSERT(fCurrentIndex <= fHash->fCapacity);
41 return fCurrentIndex == fHash->fCapacity;
49 fCurrentIndex++;
54 T* current() const { return fHash->fArray[fCurrentIndex]; }
57 int fCurrentIndex;
62 explicit ConstIter(const SkTDynamicHash* hash) : fHash(hash), fCurrentIndex(-1) {
67 SkASSERT(fCurrentIndex <= fHash->fCapacity);
68 return fCurrentIndex == fHash->fCapacity;
76 fCurrentIndex++;
81 const T* current() const { return fHash->fArray[fCurrentIndex]; }
84 int fCurrentIndex;