Lines Matching refs:tryAllocPixels
243 … bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
246 if (!this->tryAllocPixels(info, factory, ctable)) { in allocPixels()
259 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
262 if (!this->tryAllocPixels(info, rowBytes)) { in allocPixels()
267 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { in tryAllocPixels() function
268 return this->tryAllocPixels(info, info.minRowBytes()); in tryAllocPixels()
278 return this->tryAllocPixels(info);
370 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) {
371 return this->tryAllocPixels(NULL, ctable);
396 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator, SkColorTable* ctable);
399 if (!this->tryAllocPixels(allocator, ctable)) { in allocPixels()