HomeSort by relevance Sort by last modified time
    Searched defs:tryAllocPixels (Results 1 - 4 of 4) sorted by null

  /external/skia/include/core/
SkBitmap.h 494 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
528 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) {
529 return this->tryAllocPixels(info, info.minRowBytes());
667 bool SK_WARN_UNUSED_RESULT tryAllocPixels() {
668 return this->tryAllocPixels((Allocator*)nullptr);
689 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
    [all...]
  /external/skqp/include/core/
SkBitmap.h 496 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
515 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes));
532 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) {
533 return this->tryAllocPixels(info, info.minRowBytes());
574 return this->tryAllocPixels(info);
681 bool SK_WARN_UNUSED_RESULT tryAllocPixels() {
682 return this->tryAllocPixels((Allocator*)nullptr);
705 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
717 SkASSERT_RELEASE(this->tryAllocPixels(allocator));
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 213 bool SkBitmap::tryAllocPixels(Allocator* allocator) {
225 return this->tryAllocPixels(info);
239 SkASSERT_RELEASE(this->tryAllocPixels(allocator));
247 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes));
256 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) {
565 if (!tmpBitmap.tryAllocPixels(allocator)) {
589 if (!tmpBitmap.tryAllocPixels(allocator)) {
  /external/skqp/src/core/
SkBitmap.cpp 213 bool SkBitmap::tryAllocPixels(Allocator* allocator) {
224 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) {
533 if (!tmpBitmap.tryAllocPixels(allocator)) {
557 if (!tmpBitmap.tryAllocPixels(allocator)) {

Completed in 598 milliseconds