Home
last modified time | relevance | path

Searched refs:chunk (Results 1 – 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DNinePatchedImage.java145 Chunk chunk = mChunkBin.remove(0); in getChunk() local
146 chunk.init(); in getChunk()
147 return chunk; in getChunk()
647 Chunk chunk = chunks[y][x]; in getChunks() local
648 if ((chunk.type & Chunk.TYPE_HORIZONTAL) != 0) { in getChunks()
649 chunk.horizontalWeight = chunk.rect.width / horizontalPatchSum; in getChunks()
651 if ((chunk.type & Chunk.TYPE_VERTICAL) != 0) { in getChunks()
652 chunk.verticalWeight = chunk.rect.height / verticalPatchSum; in getChunks()
765 Chunk chunk = mPatchChunks[yPos][xPos]; in getProjections() local
769 yPos, xPos, chunk.toString())); in getProjections()
[all …]
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
DSocket.java136 final int chunk = is.read(data, received, len - received); in receive() local
137 if (chunk < 0) { in receive()
141 received += chunk; in receive()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
DCaptureLoader.java111 BufferedImage chunk = ImageIO.read(arrayIn); in readLayer() local
114 BufferedImage image = new BufferedImage(chunk.getWidth(), chunk.getHeight(), in readLayer()
117 g.drawImage(chunk, null, 0, 0); in readLayer()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DNinePatchedImageTest.java788 if (projections[y][x].chunk.type == Chunk.TYPE_FIXED) { in testProjection()