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

  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableTest.java 154 File imageFile = new File(mContext.getFilesDir(), "tempimage.jpg");
155 assertTrue(imageFile.createNewFile());
156 assertTrue(imageFile.exists());
157 writeSampleImage(imageFile);
159 final String path = imageFile.getPath();
162 assertTrue(imageFile.delete());
165 private void writeSampleImage(File imagefile) throws IOException {
171 target = new FileOutputStream(imagefile);
196 File imageFile = null;
211 imageFile = new File(mContext.getFilesDir(), "tempimage.jpg")
    [all...]
  /external/qemu/android/avd/
info.c 380 const char* imageFile;
400 l->imageFile = _imageFileNames[id];
448 const char* image = l->imageFile;
488 p = bufprint(temp, end, "%s/%s", i->contentPath, l->imageFile);
494 DD(" no %s in content directory", l->imageFile);
497 DD("found %s in content directory", l->imageFile);
616 DD("found user-provided %s image: %s", l->imageText, l->imageFile);
647 DD("found no %s image (%s)", l->imageText, l->imageFile);
654 l->imageText, l->imageFile);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsTest.java 223 File imageFile = null;
228 imageFile = new File(path);
229 createSampleImage(imageFile, R.raw.testimage);
242 if (imageFile != null) {
244 imageFile.delete();
609 File imagefile = new File(path); local
610 createSampleImage(imagefile, R.raw.testimage);
632 imagefile.delete();
760 private void createSampleImage(File imagefile, int resid) throws IOException {
766 target = new FileOutputStream(imagefile);
    [all...]

Completed in 80 milliseconds