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

/external/skia/include/core/
H A DSkBitmap.h480 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
499 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes));
516 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { function in class:SkBitmap
517 return this->tryAllocPixels(info, info.minRowBytes());
558 return this->tryAllocPixels(info);
665 bool SK_WARN_UNUSED_RESULT tryAllocPixels() { function in class:SkBitmap
666 return this->tryAllocPixels((Allocator*)nullptr);
689 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
701 SkASSERT_RELEASE(this->tryAllocPixels(allocator));
/external/skqp/include/core/
H A DSkBitmap.h480 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
499 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes));
516 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { function in class:SkBitmap
517 return this->tryAllocPixels(info, info.minRowBytes());
558 return this->tryAllocPixels(info);
675 bool SK_WARN_UNUSED_RESULT tryAllocPixels() { function in class:SkBitmap
676 return this->tryAllocPixels((Allocator*)nullptr);
699 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
711 SkASSERT_RELEASE(this->tryAllocPixels(allocator));
/external/skia/src/core/
H A DSkBitmap.cpp211 bool SkBitmap::tryAllocPixels(Allocator* allocator) { function in class:SkBitmap
222 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { function in class:SkBitmap
555 if (!tmpBitmap.tryAllocPixels(allocator)) {
579 if (!tmpBitmap.tryAllocPixels(allocator)) {
/external/skqp/src/core/
H A DSkBitmap.cpp211 bool SkBitmap::tryAllocPixels(Allocator* allocator) { function in class:SkBitmap
222 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { function in class:SkBitmap
554 if (!tmpBitmap.tryAllocPixels(allocator)) {
578 if (!tmpBitmap.tryAllocPixels(allocator)) {

Completed in 218 milliseconds