Searched refs:decodeRegion (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DLargeBitmap.java35 * Given a LargeBitmap, users can call decodeRegion() repeatedly
62 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { method in class:LargeBitmap
63 checkRecycled("decodeRegion called on recycled large bitmap");
84 * large bitmap as "dead", meaning it will throw an exception if decodeRegion(),
H A DBitmapRegionDecoder.java31 * Given a BitmapRegionDecoder, users can call decodeRegion() repeatedly
182 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { method in class:BitmapRegionDecoder
184 checkRecycled("decodeRegion called on recycled region decoder");
211 * region decoder as "dead", meaning it will throw an exception if decodeRegion(),
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp63 bool decodeRegion(SkBitmap* bitmap, const SkIRect& rect, function in class:SkBitmapRegionDecoder
66 return fDecoder->decodeRegion(bitmap, rect, pref);
229 if (!brd->decodeRegion(bitmap, region, prefConfig, sampleSize)) {
230 return nullObjectReturn("decoder->decodeRegion returned false");
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java51 Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options); method in interface:SimpleBitmapRegionDecoder
91 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) { method in class:SimpleBitmapRegionDecoderWrapper
92 return mDecoder.decodeRegion(wantRegion, options);
123 public Bitmap decodeRegion(Rect wantRegion, BitmapFactory.Options options) { method in class:DumbBitmapRegionDecoder
452 bitmap = mDecoder.decodeRegion(mWantRegion, mOptions);
474 Bitmap bitmap = mDecoder.decodeRegion(mOverlapRegion, mOptions);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java494 crop = decoder.decodeRegion(roundedTrueCrop, options);
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java615 crop = decoder.decodeRegion(roundedTrueCrop, options);

Completed in 377 milliseconds