Searched defs:fCurrentIndex (Results 1 - 2 of 2) sorted by relevance

/external/skia/src/gpu/
H A DGrTraceMarker.h74 fCurrentIndex = i.fCurrentIndex;
79 return fCurrentIndex == i.fCurrentIndex && fMarkers == i.fMarkers;
82 const GrGpuTraceMarker& operator*() const { return fMarkers->fMarkerArray[fCurrentIndex]; }
85 ++fCurrentIndex;
92 : fMarkers(markers), fCurrentIndex(index) {
97 int fCurrentIndex; member in class:GrTraceMarkerSet::Iter
/external/skia/src/core/
H A DSkTDynamicHash.h35 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; member in class:SkTDynamicHash::Iter
62 explicit ConstIter(const SkTDynamicHash* hash) : fHash(hash), fCurrentIndex(-1) {
67 SkASSERT(fCurrentIndex <= fHash->fCapacity);
68 return fCurrentIndex == fHash->fCapacity;
76 fCurrentIndex
84 int fCurrentIndex; member in class:SkTDynamicHash::ConstIter
[all...]

Completed in 125 milliseconds