Lines Matching refs:fCount
90 SkDEBUGCODE(fCount = count;) in SkAutoTArray()
94 SkDEBUGCODE(fCount = other.fCount; other.fCount = 0;) in SkAutoTArray()
99 SkDEBUGCODE(fCount = other.fCount; other.fCount = 0;)
115 SkASSERT((unsigned)index < (unsigned)fCount);
125 SkDEBUGCODE(int fCount = 0;)
140 fCount = 0; in SkAutoSTArray()
147 fCount = 0; in SkAutoSTArray()
158 T* iter = start + fCount; in reset()
164 if (fCount != count) { in reset()
165 if (fCount > kCount) { in reset()
179 fCount = count; in reset()
191 int count() const { return fCount; } in count()
201 T* end() { return fArray + fCount; } in end()
203 const T* end() const { return fArray + fCount; } in end()
208 SkASSERT(index < fCount);
215 size_t size() const { return fCount; } in size()
229 int fCount; variable