HomeSort by relevance Sort by last modified time
    Searched full:bitmapworkeroptions (Results 1 - 9 of 9) sorted by null

  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
DrawableDownloader.java 86 BitmapDrawable findDrawable(BitmapWorkerOptions options) {
96 if (options.getHeight() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
100 } else if (options.getWidth() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
110 BitmapDrawable findLargestDrawable(BitmapWorkerOptions options) {
218 public final Drawable loadBitmapBlocking(BitmapWorkerOptions options) {
230 protected Drawable doInBackground(BitmapWorkerOptions... params) {
246 public void loadBitmap(BitmapWorkerOptions options, final ImageView imageView) {
261 protected Drawable doInBackground(BitmapWorkerOptions... params) {
279 public void getBitmap(BitmapWorkerOptions options, final BitmapCallback callback) {
293 protected Drawable doInBackground(BitmapWorkerOptions... params)
    [all...]
BitmapWorkerTask.java 48 * @see BitmapWorkerOptions
51 public class BitmapWorkerTask extends AsyncTask<BitmapWorkerOptions, Void, Bitmap> {
71 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
76 protected Bitmap retrieveBitmap(BitmapWorkerOptions workerOptions) {
124 BitmapWorkerOptions outputOptions) throws IOException {
152 private Bitmap decodeBitmap(InputStream in, BitmapWorkerOptions options)
216 private Bitmap getBitmapFromHttp(BitmapWorkerOptions options) throws IOException {
238 private Bitmap getBitmapFromContent(BitmapWorkerOptions options) throws IOException {
282 private static Bitmap createIconBitmap(Drawable drawable, BitmapWorkerOptions workerOptions) {
318 private Bitmap getAccountImage(BitmapWorkerOptions options)
    [all...]
DrawableLoader.java 47 * @see BitmapWorkerOptions
50 class DrawableLoader extends AsyncTask<BitmapWorkerOptions, Void, Drawable> {
89 protected Drawable doInBackground(BitmapWorkerOptions... params) {
94 protected Drawable retrieveDrawable(BitmapWorkerOptions workerOptions) {
150 BitmapWorkerOptions outputOptions) throws IOException {
177 private Drawable decodeBitmap(InputStream in, BitmapWorkerOptions options)
266 private Drawable getBitmapFromHttp(BitmapWorkerOptions options) throws IOException {
284 private Drawable getBitmapFromContent(BitmapWorkerOptions options)
305 Log.w(TAG, "Get null resourceUri from BitmapWorkerOptions.");
356 private Drawable getAccountImage(BitmapWorkerOptions options)
    [all...]
BitmapDownloader.java 125 public final Bitmap loadBitmapBlocking(final BitmapWorkerOptions options) {
137 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
154 public void loadBitmap(final BitmapWorkerOptions options, final ImageView imageView) {
169 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
187 public void getBitmap(final BitmapWorkerOptions options, final BitmapCallback callback) {
197 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
257 private void addBitmapToMemoryCache(BitmapWorkerOptions key, Bitmap bitmap, boolean isScaled) {
280 private Bitmap getBitmapFromMemCache(BitmapWorkerOptions key) {
281 if (key.getHeight() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
326 public Bitmap getLargestBitmapFromMemCache(BitmapWorkerOptions key)
    [all...]
BitmapWorkerOptions.java 28 public class BitmapWorkerOptions {
72 public BitmapWorkerOptions build() {
73 BitmapWorkerOptions options = new BitmapWorkerOptions();
152 private BitmapWorkerOptions() {
AccountImageChangeObserver.java 111 public synchronized void registerChangeUriIfPresent(BitmapWorkerOptions options) {
  /packages/apps/Car/Media/src/com/android/car/media/drawer/
MediaItemsFetcher.java 24 import com.android.car.apps.common.BitmapWorkerOptions;
92 ? (BitmapWorkerOptions.CACHE_FLAG_DISK_DISABLED
93 | BitmapWorkerOptions.CACHE_FLAG_MEM_DISABLED)
95 BitmapWorkerOptions options = new BitmapWorkerOptions.Builder(context)
  /packages/apps/Car/Stream/src/com/android/car/stream/media/
MediaPlaybackMonitor.java 31 import com.android.car.apps.common.BitmapWorkerOptions;
307 new BitmapWorkerOptions.Builder(mContext)
  /packages/apps/Car/Media/src/com/android/car/media/
MediaPlaybackFragment.java 57 import com.android.car.apps.common.BitmapWorkerOptions;
413 final int flags = BitmapWorkerOptions.CACHE_FLAG_DISK_DISABLED
414 | BitmapWorkerOptions.CACHE_FLAG_MEM_DISABLED;
419 mDownloader.getBitmap(new BitmapWorkerOptions.Builder(mActivity).resource(iconUri)
    [all...]

Completed in 135 milliseconds