Lines Matching refs:fCount
82 SkDEBUGCODE(fCount = count;) in SkAutoTArray()
86 SkDEBUGCODE(fCount = other.fCount; other.fCount = 0;) in SkAutoTArray()
91 SkDEBUGCODE(fCount = other.fCount; other.fCount = 0;)
107 SkASSERT((unsigned)index < (unsigned)fCount);
113 SkDEBUGCODE(int fCount = 0;)
128 fCount = 0; in SkAutoSTArray()
135 fCount = 0; in SkAutoSTArray()
146 T* iter = start + fCount; in reset()
152 if (fCount != count) { in reset()
153 if (fCount > kCount) { in reset()
167 fCount = count; in reset()
179 int count() const { return fCount; } in count()
189 T* end() { return fArray + fCount; } in end()
191 const T* end() const { return fArray + fCount; } in end()
196 SkASSERT(index < fCount);
212 int fCount; variable