/third_party/flutter/skia/include/core/ |
D | SkBitmap.h | 478 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes); 512 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { in tryAllocPixels() function 513 return this->tryAllocPixels(info, info.minRowBytes()); in tryAllocPixels() 651 bool SK_WARN_UNUSED_RESULT tryAllocPixels() { in tryAllocPixels() function 652 return this->tryAllocPixels((Allocator*)nullptr); in tryAllocPixels() 673 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
|
/third_party/skia/include/core/ |
D | SkBitmap.h | 472 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes); 508 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { in tryAllocPixels() function 509 return this->tryAllocPixels(info, info.minRowBytes()); in tryAllocPixels() 655 bool SK_WARN_UNUSED_RESULT tryAllocPixels() { in tryAllocPixels() function 656 return this->tryAllocPixels((Allocator*)nullptr); in tryAllocPixels() 679 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator);
|
/third_party/flutter/skia/docs/examples/ |
D | Bitmap_swap.cpp | 16 if (!one.tryAllocPixels( in draw() 20 if (!two.tryAllocPixels( in draw()
|
D | Bitmap_copy_operator.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_copy_const_SkBitmap.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_move_operator.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_move_SkBitmap.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_isImmutable.cpp | 9 if (original.tryAllocPixels(info)) { in draw()
|
D | Bitmap_tryAllocPixels_2.cpp | 8 … if (bitmap.tryAllocPixels(SkImageInfo::Make(64, 64, kGray_8_SkColorType, kOpaque_SkAlphaType))) { in draw()
|
D | Bitmap_isVolatile.cpp | 9 if (original.tryAllocPixels(info)) { in draw()
|
D | Bitmap_tryAllocPixels.cpp | 9 if (bitmap.tryAllocPixels(info, 0)) { in draw()
|
D | Bitmap_tryAllocPixels_3.cpp | 12 if (bitmap.tryAllocPixels()) { in draw()
|
D | Bitmap_allocPixels_4.cpp | 25 if (bitmap.tryAllocPixels(&tinyAllocator)) { in draw()
|
/third_party/skia/docs/examples/ |
D | Bitmap_swap.cpp | 16 if (!one.tryAllocPixels( in draw() 20 if (!two.tryAllocPixels( in draw()
|
D | Bitmap_copy_const_SkBitmap.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_copy_operator.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_move_SkBitmap.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_move_operator.cpp | 8 if (original.tryAllocPixels( in draw()
|
D | Bitmap_isImmutable.cpp | 9 if (original.tryAllocPixels(info)) { in draw()
|
D | Bitmap_tryAllocPixels_2.cpp | 8 … if (bitmap.tryAllocPixels(SkImageInfo::Make(64, 64, kGray_8_SkColorType, kOpaque_SkAlphaType))) { in draw()
|
D | Bitmap_tryAllocPixels.cpp | 9 if (bitmap.tryAllocPixels(info, 0)) { in draw()
|
D | Bitmap_tryAllocPixels_3.cpp | 12 if (bitmap.tryAllocPixels()) { in draw()
|
/third_party/flutter/skia/src/core/ |
D | SkBitmap.cpp | 211 bool SkBitmap::tryAllocPixels(Allocator* allocator) { in tryAllocPixels() function in SkBitmap 223 return this->tryAllocPixels(info); in tryAllocN32Pixels() 237 SkASSERT_RELEASE(this->tryAllocPixels(allocator)); in allocPixels() 245 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes)); in allocPixels() 254 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { in tryAllocPixels() function in SkBitmap 556 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha() 580 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha()
|
/third_party/skia/src/core/ |
D | SkBitmap.cpp | 204 bool SkBitmap::tryAllocPixels(Allocator* allocator) { in tryAllocPixels() function in SkBitmap 216 return this->tryAllocPixels(info); in tryAllocN32Pixels() 230 if (!this->tryAllocPixels(allocator)) { in allocPixels() 243 SkASSERT_RELEASE(this->tryAllocPixels(info, rowBytes)); in allocPixels() 252 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { in tryAllocPixels() function in SkBitmap 543 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha() 567 if (!tmpBitmap.tryAllocPixels(allocator)) { in extractAlpha()
|
/third_party/skia/src/android/ |
D | SkAnimatedImage.cpp | 92 if (!fDecodingFrame.fBitmap.tryAllocPixels(fDecodeInfo)) { in SkAnimatedImage() 127 if (!tmp.tryAllocPixels(info)) { in init() 138 return fBitmap.tryAllocPixels(info); in init() 380 if (!dst.tryAllocPixels(imageInfo)) { in getCurrentFrame()
|