Home
last modified time | relevance | path

Searched defs:crop (Results 1 – 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DImageUtilsTest.java41 BufferedImage crop = ImageUtils.cropBlank(image, null); in testCropBlank() local
52 BufferedImage crop = ImageUtils.cropBlank(image, new Rect(5, 5, 80, 80)); in testCropBlankPre() local
63 BufferedImage crop = ImageUtils.cropBlank(image, null); in testCropNonblank() local
78 BufferedImage crop = ImageUtils.cropBlank(image, null); in testCropSomething() local
95 BufferedImage crop = ImageUtils.cropBlank(image, new Rect(0, 0, 100, 100)); in testCropSomethingPre() local
112 BufferedImage crop = ImageUtils.cropBlank(image, new Rect(5, 5, 80, 80)); in testCropSomethingPre2() local
127 BufferedImage crop = ImageUtils.cropColor(image, 0xFF00FF00, null); in testCropColor() local
138 BufferedImage crop = ImageUtils.cropColor(image, 0xFFFF0000, null); in testCropNonColor() local
153 BufferedImage crop = ImageUtils.cropColor(image, 0xFF00FF00, null); in testCropColorSomething() local
173 BufferedImage crop = ImageUtils.cropColor(image, 0xFFFF0000, new Rect(40, 40, 0, 0)); in testNothingTodo() local
/sdk/assetstudio/tests/src/com/android/assetstudiolib/
DLauncherIconGeneratorTest.java27 boolean crop, int background, boolean isWebGraphic) throws IOException { in checkGraphic()
/sdk/assetstudio/src/com/android/assetstudiolib/
DLauncherIconGenerator.java120 public boolean crop = true; field in LauncherIconGenerator.LauncherOptions
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DImageUtils.java213 boolean crop(BufferedImage image, int x, int y); in crop() method
216 private static BufferedImage crop(BufferedImage image, CropFilter filter, Rect initialCrop, in crop() method in ImageUtils