Home | History | Annotate | Download | only in private

Lines Matching refs:fArray

118         fArray = NULL;
125 fArray = NULL;
127 fArray = new T[count];
135 delete[] fArray;
137 fArray = NULL;
139 fArray = new T[count];
144 ~SkAutoTArray() { delete[] fArray; }
148 T* get() const { return fArray; }
154 return fArray[index];
158 SkTSwap(fArray, other.fArray);
163 T* fArray;
173 fArray = NULL;
180 fArray = NULL;
191 T* start = fArray;
199 // 'fArray' was allocated last time so free it now
200 SkASSERT((T*) fStorage != fArray);
201 sk_free(fArray);
210 fArray = (T*) sk_malloc_throw(size);
212 fArray = (T*) fStorage;
214 fArray = NULL;
220 iter = fArray;
221 T* stop = fArray + count;
233 T* get() const { return fArray; }
239 return fArray[index];
255 T* fArray;
256 // since we come right after fArray, fStorage should be properly aligned