/cts/tests/tests/media/src/android/media/cts/ |
ExifInterfaceTest.java | 183 File imageFile = new File(imageFilePath); 184 if (imageFile.exists()) { 185 imageFile.delete(); 323 private void testExifInterfaceCommon(File imageFile, ExpectedValue expectedValue) 325 String verboseTag = imageFile.getName(); 328 ExifInterface exifInterface = new ExifInterface(imageFile.getAbsolutePath()); 335 in = getContext().getAssets().open(imageFile.getName()); 345 in = new BufferedInputStream(new FileInputStream(imageFile.getAbsolutePath())); 355 fd = Os.open(imageFile.getAbsolutePath(), OsConstants.O_RDONLY, 0600); 365 private void testSaveAttributes_withFileName(File imageFile, ExpectedValue expectedValue [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
ExifInterfaceTest.java | 187 File imageFile = new File(imageFilePath); 188 if (imageFile.exists()) { 189 imageFile.delete(); 316 private void testExifInterfaceCommon(File imageFile, ExpectedValue expectedValue) 318 String verboseTag = imageFile.getName(); 321 ExifInterface exifInterface = new ExifInterface(imageFile.getAbsolutePath()); 327 in = mContext.getAssets().open(imageFile.getName()); 337 in = new BufferedInputStream(new FileInputStream(imageFile.getAbsolutePath())); 347 fd = Os.open(imageFile.getAbsolutePath(), OsConstants.O_RDONLY, 0600); 357 private void testSaveAttributes_withFileName(File imageFile, ExpectedValue expectedValue [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
DistanceFieldFont.java | 51 public DistanceFieldFont (FileHandle fontFile, FileHandle imageFile, boolean flip, boolean integer) { 52 super(fontFile, imageFile, flip, integer); 55 public DistanceFieldFont (FileHandle fontFile, FileHandle imageFile, boolean flip) { 56 super(fontFile, imageFile, flip);
|
BitmapFont.java | 120 public BitmapFont (FileHandle fontFile, FileHandle imageFile, boolean flip) { 121 this(fontFile, imageFile, flip, true); 128 public BitmapFont (FileHandle fontFile, FileHandle imageFile, boolean flip, boolean integer) { 129 this(new BitmapFontData(fontFile, flip), new TextureRegion(new Texture(imageFile, false)), integer); [all...] |
/frameworks/support/core-utils/java/android/support/v4/print/ |
PrintHelper.java | 108 public void printBitmap(String jobName, Uri imageFile, OnPrintFinishCallback callback) 150 public void printBitmap(String jobName, Uri imageFile, OnPrintFinishCallback callback) { 211 public void printBitmap(String jobName, Uri imageFile, 222 mPrintHelper.printBitmap(jobName, imageFile, delegateCallback); 379 * @param imageFile The <code>Uri</code> pointing to an image to print. 382 public void printBitmap(String jobName, Uri imageFile) throws FileNotFoundException { 383 mImpl.printBitmap(jobName, imageFile, null); 392 * @param imageFile The <code>Uri</code> pointing to an image to print. 396 public void printBitmap(String jobName, Uri imageFile, OnPrintFinishCallback callback) 398 mImpl.printBitmap(jobName, imageFile, callback) [all...] |
/external/fonttools/Lib/fontTools/pens/ |
reportLabPen.py | 50 imageFile = sys.argv[3] 52 imageFile = "%s.png" % glyphName 72 renderPM.drawToFile(d, imageFile, fmt="PNG")
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/ |
ByodPresentMediaDialog.java | 137 File imageFile = (File) getArguments().getSerializable(KEY_IMAGE_FILE); 144 int orientationInDegree = getOrientationInDegreeFromImage(imageFile); 146 input = new FileInputStream(imageFile); 160 input = new FileInputStream(imageFile); 214 private static int getOrientationInDegreeFromImage(File imageFile) throws IOException { 215 ExifInterface exifInterface = new ExifInterface(imageFile.getAbsolutePath());
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
DrawableTest.java | 130 File imageFile = new File(mContext.getFilesDir(), "tempimage.jpg"); 131 assertTrue(imageFile.createNewFile()); 132 assertTrue(imageFile.exists()); 133 writeSampleImage(imageFile); 135 final String path = imageFile.getPath(); 138 assertTrue(imageFile.delete()); 141 private void writeSampleImage(File imagefile) throws IOException { 147 target = new FileOutputStream(imagefile); 167 File imageFile = null; 182 imageFile = new File(mContext.getFilesDir(), "tempimage.jpg") [all...] |
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/ |
SavedWallpaperImages.java | 195 File imageFile = new File(mContext.getFilesDir(), filenames.first); 196 imageFile.delete(); 224 File imageFile = File.createTempFile("wallpaper", "", mContext.getFilesDir()); 226 mContext.openFileOutput(imageFile.getName(), Context.MODE_PRIVATE); 244 values.put(ImageDb.COLUMN_IMAGE_FILENAME, imageFile.getName());
|
/developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/ |
RecipeListAdapter.java | 74 String imageFile = item.getString(Constants.RECIPE_FIELD_IMAGE); 75 parsed.image = AssetUtils.loadBitmapAsset(mContext, imageFile);
|
/developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/ |
RecipeListAdapter.java | 74 String imageFile = item.getString(Constants.RECIPE_FIELD_IMAGE); 75 parsed.image = AssetUtils.loadBitmapAsset(mContext, imageFile);
|
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/ |
RecipeListAdapter.java | 74 String imageFile = item.getString(Constants.RECIPE_FIELD_IMAGE); 75 parsed.image = AssetUtils.loadBitmapAsset(mContext, imageFile);
|
/frameworks/support/core-utils/kitkat/android/support/v4/print/ |
PrintHelperKitkat.java | 442 * @param imageFile The <code>Uri</code> pointing to an image to print. 446 public void printBitmap(final String jobName, final Uri imageFile, 498 return loadConstrainedBitmap(imageFile, MAX_PRINT_SIZE);
|
/frameworks/base/services/core/java/com/android/server/am/ |
TaskPersister.java | 697 FileOutputStream imageFile = null; 699 imageFile = new FileOutputStream(new File(filePath)); 700 bitmap.compress(Bitmap.CompressFormat.PNG, 100, imageFile); 704 IoUtils.closeQuietly(imageFile);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
RemoteViewsTest.java | 205 File imageFile = new File(path); 208 createSampleImage(imageFile, R.raw.testimage); 222 imageFile.delete(); 503 File imagefile = new File(path); local 506 createSampleImage(imagefile, R.raw.testimage); 529 imagefile.delete(); 616 private void createSampleImage(File imagefile, int resid) throws IOException { 622 target = new FileOutputStream(imagefile);
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
Skin.java | 486 FileHandle imageFile = fontFile.parent().child(regionName + ".png");
487 if (imageFile.exists())
488 font = new BitmapFont(fontFile, imageFile, flip);
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/ |
Hiero.java | [all...] |
/prebuilts/tools/common/fest/ |
fest-assert-1.2.jar | |
/developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/ |
android-support-v4.jar | |
/developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/ |
android-support-v4.jar | |
/external/libgdx/backends/gdx-backend-android/libs/ |
support-v4-19.0.1.jar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/ |
support-v4-19.0.0.jar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.1/ |
support-v4-19.0.1.jar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/19.1.0/ |
support-v4-19.1.0.jar | |
/prebuilts/sdk/current/support/v13/ |
android-support-v13.jar | |