Home
last modified time | relevance | path

Searched refs:DecodeOptions (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/bitmap/src/com/android/bitmap/
DDecodeTask.java52 private final DecodeOptions mDecodeOpts;
98 public DecodeTask(RequestKey requestKey, DecodeOptions decodeOpts, in DecodeTask()
240 case DecodeOptions.STRATEGY_TRUNCATE: in decode()
243 case DecodeOptions.STRATEGY_ROUND_UP: in decode()
246 case DecodeOptions.STRATEGY_ROUND_NEAREST: in decode()
530 public static class DecodeOptions { class in DecodeTask
574 public DecodeOptions(final int destW, final int destH) { in DecodeOptions() method in DecodeTask.DecodeOptions
587 public DecodeOptions(final int destW, final int destH, in DecodeOptions() method in DecodeTask.DecodeOptions
604 public DecodeOptions(final int destW, final int destH, final float horizontalCenter, in DecodeOptions() method in DecodeTask.DecodeOptions
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
DBasicBitmapDrawable.java31 import com.android.bitmap.DecodeTask.DecodeOptions;
332 final DecodeOptions opts = new DecodeOptions(bufferW, bufferH, getDecodeHorizontalCenter(), in decode()
343 return DecodeOptions.STRATEGY_ROUND_NEAREST; in getDecodeStrategy()