Lines Matching refs:fIndex
34 constexpr Iterator(const SkZip* zip, size_t index) : fZip{zip}, fIndex{index} { }
35 constexpr Iterator(const Iterator& that) : Iterator{ that.fZip, that.fIndex } { }
36 constexpr Iterator& operator++() { ++fIndex; return *this; }
38 constexpr bool operator==(const Iterator& rhs) const { return fIndex == rhs.fIndex; }
39 constexpr bool operator!=(const Iterator& rhs) const { return fIndex != rhs.fIndex; }
40 constexpr reference operator*() { return (*fZip)[fIndex]; }
42 return lhs.fIndex - rhs.fIndex;
47 size_t fIndex = 0;