HomeSort by relevance Sort by last modified time
    Searched refs:RefcountBitmapDrawable (Results 1 - 5 of 5) sorted by null

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
RefcountBitmapDrawable.java 23 public class RefcountBitmapDrawable extends BitmapDrawable {
30 public RefcountBitmapDrawable(Resources res, RefcountObject<Bitmap> bitmap) {
38 public RefcountBitmapDrawable(Resources res, RefcountBitmapDrawable drawable) {
RefcountImageView.java 74 if (drawable instanceof RefcountBitmapDrawable) {
75 ((RefcountBitmapDrawable) drawable).getRefcountObject().releaseRef();
DrawableDownloader.java 44 * Calling getBitmap() or loadBitmap() will return a RefcountBitmapDrawable with initial refcount =
133 if (d instanceof RefcountBitmapDrawable) {
134 ((RefcountBitmapDrawable) d).getRefcountObject().releaseRef();
369 if (bitmap instanceof RefcountBitmapDrawable) {
370 RefcountBitmapDrawable refcountDrawable = (RefcountBitmapDrawable) bitmap;
399 if (d instanceof RefcountBitmapDrawable) {
400 RefcountBitmapDrawable refcountDrawable = (RefcountBitmapDrawable) d;
402 d = new RefcountBitmapDrawable(mContext.getResources()
    [all...]
DrawableLoader.java 146 if (result instanceof RefcountBitmapDrawable) {
149 RefcountBitmapDrawable d = (RefcountBitmapDrawable) result;
259 RefcountBitmapDrawable d = new RefcountBitmapDrawable(
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
TransitionImageView.java 19 import com.android.tv.settings.widget.RefcountBitmapDrawable;
117 if (mBitmapDrawable instanceof RefcountBitmapDrawable) {
118 ((RefcountBitmapDrawable) mBitmapDrawable).getRefcountObject().releaseRef();

Completed in 148 milliseconds