Home | History | Annotate | Download | only in data

Lines Matching refs:jc

60     public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) {
62 jc.setCancelListener(new DecodeCanceller(options));
68 public static void decodeBounds(JobContext jc, FileDescriptor fd,
72 jc.setCancelListener(new DecodeCanceller(options));
77 public static Bitmap decode(JobContext jc, byte[] bytes, Options options) {
78 return decode(jc, bytes, 0, bytes.length, options);
81 public static Bitmap decode(JobContext jc, byte[] bytes, int offset,
84 jc.setCancelListener(new DecodeCanceller(options));
90 public static void decodeBounds(JobContext jc, byte[] bytes, int offset,
94 jc.setCancelListener(new DecodeCanceller(options));
100 JobContext jc, String filePath, Options options, int targetSize, int type) {
105 return decodeThumbnail(jc, fd, options, targetSize, type);
115 JobContext jc, FileDescriptor fd, Options options, int targetSize, int type) {
117 jc.setCancelListener(new DecodeCanceller(options));
121 if (jc.isCancelled()) return null;
168 public static Bitmap decodeIfBigEnough(JobContext jc, byte[] data,
171 jc.setCancelListener(new DecodeCanceller(options));
175 if (jc.isCancelled()) return null;
199 JobContext jc, byte[] bytes, int offset, int length,
217 JobContext jc, String filePath, boolean shareable) {
227 JobContext jc, FileDescriptor fd, boolean shareable) {
237 JobContext jc, InputStream is, boolean shareable) {
249 public static Bitmap decode(JobContext jc, byte[] data, int offset,
252 return decode(jc, data, offset, length, options);
259 ? findCachedBitmap(pool, jc, data, offset, length, options) : null;
261 Bitmap bitmap = decode(jc, data, offset, length, options);
273 return decode(jc, data, offset, length, options);
280 public static Bitmap decode(JobContext jc,
283 return decode(jc, fileDescriptor, options);
290 ? findCachedBitmap(pool, jc, fileDescriptor, options) : null;
292 Bitmap bitmap = DecodeUtils.decode(jc, fileDescriptor, options);
304 return decode(jc, fileDescriptor, options);
308 private static Bitmap findCachedBitmap(BitmapPool pool, JobContext jc,
311 decodeBounds(jc, data, offset, length, options);
315 private static Bitmap findCachedBitmap(BitmapPool pool, JobContext jc,
318 decodeBounds(jc, fileDescriptor, options);