Searched refs:TYPE_VERTICAL (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/ |
D | NinePatchedImageTest.java | 234 assertEquals(Chunk.TYPE_HORIZONTAL | Chunk.TYPE_VERTICAL, c.type); in test9Patch1() 242 assertEquals(Chunk.TYPE_VERTICAL, c.type); in test9Patch1() 250 assertEquals(Chunk.TYPE_HORIZONTAL | Chunk.TYPE_VERTICAL, c.type); in test9Patch1() 284 assertEquals(Chunk.TYPE_HORIZONTAL | Chunk.TYPE_VERTICAL, c.type); in test9Patch1() 292 assertEquals(Chunk.TYPE_VERTICAL, c.type); in test9Patch1() 300 assertEquals(Chunk.TYPE_HORIZONTAL | Chunk.TYPE_VERTICAL, c.type); in test9Patch1() 339 assertEquals(Chunk.TYPE_HORIZONTAL | Chunk.TYPE_VERTICAL, c.type); in test9Patch2() 347 assertEquals(Chunk.TYPE_VERTICAL, c.type); in test9Patch2() 355 assertEquals(Chunk.TYPE_HORIZONTAL | Chunk.TYPE_VERTICAL, c.type); in test9Patch2() 363 assertEquals(Chunk.TYPE_VERTICAL, c.type); in test9Patch2() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
D | NinePatchedImage.java | 628 t.type += Chunk.TYPE_VERTICAL; in getChunks() 637 if ((t.type & Chunk.TYPE_VERTICAL) == 0 && lenY > 1 && x == 0) { in getChunks() 651 if ((chunk.type & Chunk.TYPE_VERTICAL) != 0) { in getChunks() 676 if ((c.type & Chunk.TYPE_VERTICAL) != 0 in getCorruptedChunks() 789 if ((chunk.type & Chunk.TYPE_VERTICAL) != 0) { in getProjections() 819 public static final int TYPE_VERTICAL = 0x2; field in NinePatchedImage.Chunk 845 case TYPE_VERTICAL: in typeToString() 847 case TYPE_HORIZONTAL + TYPE_VERTICAL: in typeToString()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/ |
D | ImageViewer.java | 657 } else if (c.type == Chunk.TYPE_VERTICAL) { 659 } else if (c.type == Chunk.TYPE_HORIZONTAL + Chunk.TYPE_VERTICAL) {
|