Home
last modified time | relevance | path

Searched refs:hasNinePatchExtension (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DNinePatchedImageTest.java49 assertFalse(image.hasNinePatchExtension()); in testReadNoPatchedImage()
65 assertFalse(image.hasNinePatchExtension()); in testReadNoPatchedInteraceImage()
81 assertFalse(image.hasNinePatchExtension()); in testConvert9PatchedImage()
93 assertTrue(image.hasNinePatchExtension()); in testConvert9PatchedImage()
120 assertTrue(image.hasNinePatchExtension()); in testReadInvalidPatchedImageCorners()
128 assertTrue(image.hasNinePatchExtension()); in testReadInvalidPatchedImageCorners()
136 assertTrue(image.hasNinePatchExtension()); in testReadInvalidPatchedImageCorners()
144 assertTrue(image.hasNinePatchExtension()); in testReadInvalidPatchedImageCorners()
155 assertTrue(image.hasNinePatchExtension()); in testReadInvalidPatchedImageLine()
163 assertTrue(image.hasNinePatchExtension()); in testReadInvalidPatchedImageLine()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/
DDraw9PatchEditor.java104 boolean hasNinePatchExtension = mFileName.endsWith(DOT_9PNG); in doSave()
107 if (!hasNinePatchExtension) { in doSave()
136 if (hasNinePatchExtension || doConvert) { in doSave()
178 if (mNinePatchedImage.hasNinePatchExtension()) { in createPartControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DNinePatchedImage.java110 public boolean hasNinePatchExtension() { in hasNinePatchExtension() method in NinePatchedImage
130 boolean hasNinePatchExtension = fileName.endsWith(DOT_9PNG); in NinePatchedImage()
133 initNinePatchedImage(data, hasNinePatchExtension); in NinePatchedImage()
137 boolean hasNinePatchExtension = fileName.endsWith(DOT_9PNG); in NinePatchedImage()
140 initNinePatchedImage(data, hasNinePatchExtension); in NinePatchedImage()
215 private void initNinePatchedImage(ImageData imageData, boolean hasNinePatchExtension) { in initNinePatchedImage() argument
217 mHasNinePatchExtension = hasNinePatchExtension; in initNinePatchedImage()