Home | History | Annotate | Download | only in include

Lines Matching refs:GrAssert

38         GrAssert(reserveCount >= 0);
49 GrAssert(N > 0);
58 GrAssert(preAllocCount >= 0);
62 GrAssert((NULL == preAllocStorage) == !preAllocCount);
89 GrAssert(count >= 0);
107 GrAssert(preAllocCount >= 0);
110 GrAssert((NULL == preAllocStorage) == !preAllocCount);
137 GrAssert(count >= 0);
138 GrAssert(preAllocCount >= 0);
141 GrAssert((NULL == preAllocStorage) == !preAllocCount);
205 GrAssert(n >= 0);
214 GrAssert(fCount > 0);
221 GrAssert(n >= 0);
222 GrAssert(fCount >= n);
232 GrAssert(newCount >= 0);
242 GrAssert(i < fCount);
243 GrAssert(i >= 0);
248 GrAssert(i < fCount);
249 GrAssert(i >= 0);
253 T& front() { GrAssert(fCount > 0); return fItemArray[0];}
255 const T& front() const { GrAssert(fCount > 0); return fItemArray[0];}
257 T& back() { GrAssert(fCount); return fItemArray[fCount - 1];}
259 const T& back() const { GrAssert(fCount > 0); return fItemArray[fCount - 1];}
262 GrAssert(i >= 0);
263 GrAssert(i < fCount);
268 GrAssert(i >= 0);
269 GrAssert(i < fCount);
278 GrAssert(fCount >= 0);
279 GrAssert(fAllocCount >= 0);
281 GrAssert(-delta <= fCount);