Searched defs:tryAllocPixels (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/core/
H A DSkBitmap.h225 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
228 if (!this->tryAllocPixels(info, factory, ctable)) {
241 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
244 if (!this->tryAllocPixels(info, rowBytes)) {
249 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { function in class:SkBitmap
250 return this->tryAllocPixels(info, info.minRowBytes());
260 return this->tryAllocPixels(info);
341 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) { function in class:SkBitmap
342 return this->tryAllocPixels(NULL, ctable);
367 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocato
[all...]
/external/skia/src/core/
H A DSkBitmap.cpp269 bool SkBitmap::tryAllocPixels(Allocator* allocator, SkColorTable* ctable) { function in class:SkBitmap
280 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { function in class:SkBitmap
309 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, SkPixelRefFactory* factory, function in class:SkBitmap
973 if (!tmpDst.tryAllocPixels(alloc, ctable)) {
1144 if (!tmpBitmap.tryAllocPixels(allocator, NULL)) {
1168 if (!tmpBitmap.tryAllocPixels(allocator, NULL)) {

Completed in 300 milliseconds