HomeSort by relevance Sort by last modified time
    Searched refs:jc (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 34 public static boolean requestDownload(JobContext jc, URL url, File file) {
38 return download(jc, url, fos);
46 public static void dump(JobContext jc, InputStream is, OutputStream os)
51 jc.setCancelListener(new CancelListener() {
58 if (jc.isCancelled()) throw new InterruptedIOException();
62 jc.setCancelListener(null);
66 public static boolean download(JobContext jc, URL url, OutputStream output) {
70 dump(jc, input, output);
ImageCacheRequest.java 51 public Bitmap run(JobContext jc) {
57 if (jc.isCancelled()) return null;
63 bitmap = DecodeUtils.decode(jc,
67 bitmap = DecodeUtils.decode(jc,
71 if (bitmap == null && !jc.isCancelled()) {
79 Bitmap bitmap = onDecodeOriginal(jc, mType);
80 if (jc.isCancelled()) return null;
92 if (jc.isCancelled()) return null;
95 if (jc.isCancelled()) return null;
101 public abstract Bitmap onDecodeOriginal(JobContext jc, int targetSize)
    [all...]
DecodeUtils.java 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))
    [all...]
UriImage.java 79 private void openFileOrDownloadTempFile(JobContext jc) {
80 int state = openOrDownloadInner(jc);
93 private int openOrDownloadInner(JobContext jc) {
107 if (jc.isCancelled()) return STATE_INIT;
116 mCacheEntry = mApplication.getDownloadCache().download(jc, url);
117 if (jc.isCancelled()) return STATE_INIT;
137 private boolean prepareInputFile(JobContext jc) {
138 jc.setCancelListener(new CancelListener() {
149 if (jc.isCancelled()) return false;
167 openFileOrDownloadTempFile(jc);
    [all...]
BucketHelper.java 89 JobContext jc, ContentResolver resolver, int type) {
91 return loadBucketEntriesFromFilesTable(jc, resolver, type);
93 return loadBucketEntriesFromImagesAndVideoTable(jc, resolver, type);
97 private static void updateBucketEntriesFromTable(JobContext jc,
124 JobContext jc, ContentResolver resolver, int type) {
128 jc, resolver, Images.Media.EXTERNAL_CONTENT_URI, buckets);
132 jc, resolver, Video.Media.EXTERNAL_CONTENT_URI, buckets);
146 JobContext jc, ContentResolver resolver, int type) {
174 if (jc.isCancelled()) return null;
BytesBufferPool.java 40 public void readFrom(JobContext jc, FileDescriptor fd) throws IOException {
48 if (rc < 0 || jc.isCancelled()) return;
SnailItem.java 43 public Bitmap run(JobContext jc) {
54 public BitmapRegionDecoder run(JobContext jc) {
MtpImage.java 81 public Bitmap run(JobContext jc) {
88 return DecodeUtils.decode(jc, thumbnail, null);
97 public BitmapRegionDecoder run(JobContext jc) {
101 jc, bytes, 0, bytes.length, false);
PanoramaMetadataJob.java 37 public PanoramaMetadata run(JobContext jc) {
DownloadCache.java 114 public Entry download(JobContext jc, URL url) {
148 return proxy.get(jc);
315 public File run(JobContext jc) {
317 jc.setMode(ThreadPool.MODE_NETWORK);
323 jc.setMode(ThreadPool.MODE_NETWORK);
324 boolean downloaded = DownloadUtils.requestDownload(jc, url, tempFile);
325 jc.setMode(ThreadPool.MODE_NONE);
330 jc.setMode(ThreadPool.MODE_NONE);
348 public synchronized Entry get(JobContext jc) {
349 jc.setCancelListener(new CancelListener()
    [all...]
  /external/javassist/src/main/javassist/expr/
Instanceof.java 98 Javac jc = new Javac(thisClass); local
108 jc.recordParams(javaLangObject, params, true, paramVar,
110 int retVar = jc.recordReturnType(retType, true);
111 jc.recordProceed(new ProceedForInstanceof(index));
114 jc.recordType(getType());
120 Bytecode bytecode = jc.getBytecode();
122 jc.recordLocalVariables(ca, pos);
127 jc.compileStmnt(statement);
Cast.java 95 Javac jc = new Javac(thisClass); local
105 jc.recordParams(javaLangObject, params, true, paramVar,
107 int retVar = jc.recordReturnType(retType, true);
108 jc.recordProceed(new ProceedForCast(index, retType));
114 Bytecode bytecode = jc.getBytecode();
116 jc.recordLocalVariables(ca, pos);
121 jc.compileStmnt(statement);
MethodCall.java 203 Javac jc = new Javac(thisClass); local
210 jc.recordParams(classname, params,
212 int retVar = jc.recordReturnType(retType, true);
214 jc.recordStaticProceed(classname, methodname);
216 jc.recordSpecialProceed(Javac.param0Name, classname,
219 jc.recordProceed(Javac.param0Name, methodname);
225 Bytecode bytecode = jc.getBytecode();
227 jc.recordLocalVariables(ca, pos);
234 jc.compileStmnt(statement);
NewExpr.java 182 Javac jc = new Javac(thisClass); local
189 jc.recordParams(newTypeName, params,
191 int retVar = jc.recordReturnType(newType, true);
192 jc.recordProceed(new ProceedForNew(newType, newIndex,
199 Bytecode bytecode = jc.getBytecode();
201 jc.recordLocalVariables(ca, pos);
206 jc.compileStmnt(statement);
FieldAccess.java 155 Javac jc = new Javac(thisClass); local
175 jc.recordParams(constPool.getFieldrefClassName(index), params,
184 int retVar = jc.recordReturnType(retType, included);
186 jc.recordProceed(new ProceedForRead(retType, opcode,
190 jc.recordType(fieldType);
191 jc.recordProceed(new ProceedForWrite(params[0], opcode,
195 Bytecode bytecode = jc.getBytecode();
197 jc.recordLocalVariables(ca, pos);
209 jc.compileStmnt(statement);
NewArray.java 208 Javac jc = new Javac(thisClass); local
216 jc.recordParams(javaLangObject, params,
222 int retVar = jc.recordReturnType(retType, true);
223 jc.recordProceed(new ProceedForArray(retType, opcode, index, dim));
225 Bytecode bytecode = jc.getBytecode();
227 jc.recordLocalVariables(ca, pos);
232 jc.compileStmnt(statement);
  /external/grub/stage2/
apm.S 39 jc done_apm_bios
67 jc no_32_apm_bios
94 jc done_apm_bios
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 159 Class jc = getClassMetaobject().getJavaClass(); local
161 return jc.getField(name).get(getObject());
179 Class jc = getClassMetaobject().getJavaClass(); local
181 jc.getField(name).set(getObject(), value);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ActionModeHandler.java 87 public GetAllPanoramaSupports(ArrayList<MediaObject> mediaObjects, JobContext jc) {
88 mJobContext = jc;
264 private ArrayList<MediaObject> getSelectedMediaObjects(JobContext jc) {
274 if (jc.isCancelled()) {
319 private Intent computePanoramaSharingIntent(JobContext jc) {
328 if (jc.isCancelled()) return null;
349 private Intent computeSharingIntent(JobContext jc) {
360 if (jc.isCancelled()) return null;
407 public Void run(final JobContext jc) {
409 ArrayList<MediaObject> selected = getSelectedMediaObjects(jc);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 275 public Intent run(JobContext jc) {
290 if (jc.isCancelled()) return null;
293 if (!saveBitmapToUri(jc, cropped, uri)) return null;
296 if (jc.isCancelled()) return null;
302 if (jc.isCancelled()) return null;
305 if (!setAsWallpaper(jc, cropped)) return null;
309 if (jc.isCancelled()) return null;
311 Uri data = saveToMediaProvider(jc, cropped);
331 private boolean setAsWallpaper(JobContext jc, Bitmap wallpaper) {
341 JobContext jc, Bitmap cropped, File directory, String filename, ExifData exifData)
    [all...]
SlideshowDataAdapter.java 96 public Void run(JobContext jc) {
132 .run(jc);
177 public Slide run(JobContext jc) {
178 jc.setMode(ThreadPool.MODE_NONE);
  /bionic/libm/amd64/
s_remquo.S 42 jc 1b
s_remquof.S 42 jc 1b
  /external/llvm/test/MC/MachO/
jcc.s 11 jc 1f
  /external/grub/stage1/
stage1.S 173 jc chs_mode
225 jc chs_mode
345 jc read_error
488 jc probe_loop

Completed in 232 milliseconds

1 2 3 4