Lines Matching refs:fCount
33 , fCount(0) in GrAllocator()
58 ++fCount; in push_back()
67 SkASSERT(fCount); in pop_back()
70 --fCount; in pop_back()
97 fCount = 0; in reset()
104 return fCount; in count()
110 bool empty() const { return 0 == fCount; } in empty()
116 SkASSERT(fCount); in back()
125 SkASSERT(fCount); in back()
155 return fItemIndex < fAllocator->fCount; in next()
163 SkASSERT(fItemIndex >= 0 && fItemIndex < fAllocator->fCount); in get()
178 SkASSERT(i >= 0 && i < fCount);
187 SkASSERT(i >= 0 && i < fCount);
202 SkASSERT(0 == fCount); in setInitialBlock()
221 int fCount; variable