Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DImageUtilsTest.java42 BufferedImage crop = ImageUtils.cropBlank(image, null); in testCropBlank() local
53 BufferedImage crop = ImageUtils.cropBlank(image, new Rect(5, 5, 80, 80)); in testCropBlankPre() local
64 BufferedImage crop = ImageUtils.cropBlank(image, null); in testCropNonblank() local
79 BufferedImage crop = ImageUtils.cropBlank(image, null); in testCropSomething() local
96 BufferedImage crop = ImageUtils.cropBlank(image, new Rect(0, 0, 100, 100)); in testCropSomethingPre() local
113 BufferedImage crop = ImageUtils.cropBlank(image, new Rect(5, 5, 80, 80)); in testCropSomethingPre2() local
128 BufferedImage crop = ImageUtils.cropColor(image, 0xFF00FF00, null); in testCropColor() local
139 BufferedImage crop = ImageUtils.cropColor(image, 0xFFFF0000, null); in testCropNonColor() local
154 BufferedImage crop = ImageUtils.cropColor(image, 0xFF00FF00, null); in testCropColorSomething() local
168 BufferedImage crop = ImageUtils.cropColor(image, 0xFFFF0000, new Rect(40, 40, 0, 0)); in testNothingTodo() local
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
DCreateAssetSetWizardState.java88 public boolean crop; field in CreateAssetSetWizardState
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DImageUtils.java231 boolean crop(BufferedImage image, int x, int y); in crop() method
234 private static BufferedImage crop(BufferedImage image, CropFilter filter, Rect initialCrop, in crop() method in ImageUtils