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

/external/chromium_org/third_party/skia/include/core/
H A DSkBitmap.h231 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
235 if (!this->tryAllocPixels(info, factory, ctable)) {
249 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
252 if (!this->tryAllocPixels(info, rowBytes)) {
258 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { function in class:SkBitmap
259 return this->tryAllocPixels(info, info.minRowBytes());
269 return this->tryAllocPixels(info);
350 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) { function in class:SkBitmap
351 return this->tryAllocPixels(NULL, ctable);
376 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocato
[all...]
/external/chromium_org/third_party/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
945 if (!tmpDst.tryAllocPixels(alloc, ctable)) {
1116 if (!tmpBitmap.tryAllocPixels(allocator, NULL)) {
1140 if (!tmpBitmap.tryAllocPixels(allocator, NULL)) {

Completed in 330 milliseconds