Searched refs:tileY (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DTileObserver.java47 * @param tileY the Y index of the tile that is being updated.
52 int tileX, int tileY,
51 tileUpdate(WritableRenderedImage source, int tileX, int tileY, boolean willBeWritable) argument
H A DWritableRenderedImage.java95 * @param tileY the Y index of the tile.
98 public WritableRaster getWritableTile(int tileX, int tileY); argument
112 * @param tileY the Y index of the tile.
114 public void releaseWritableTile(int tileX, int tileY); argument
120 * @param tileY the Y index of the tile.
124 public boolean isTileWritable(int tileX, int tileY); argument
H A DRenderedImage.java176 * Returns tile (tileX, tileY). Note that tileX and tileY are indices
180 * @param tileY the Y index of the requested tile in the tile array
183 Raster getTile(int tileX, int tileY); argument
H A DBufferedImage.java1382 * Returns tile (<code>tileX</code>,&nbsp;<code>tileY</code>). Note
1383 * that <code>tileX</code> and <code>tileY</code> are indices
1388 * @param tileY the y index of the requested tile in the tile array
1390 * arguments <code>tileX</code> and <code>tileY</code>.
1392 * <code>tileX</code> and <code>tileY</code> are not
1395 public Raster getTile(int tileX, int tileY) { argument
1396 if (tileX == 0 && tileY == 0) {
1557 * @param tileY the y index of the tile.
1562 * <code>tileX</code> and <code>tileY</code> are not equal
1565 public boolean isTileWritable (int tileX, int tileY) { argument
1609 getWritableTile(int tileX, int tileY) argument
1624 releaseWritableTile(int tileX, int tileY) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageReader.java1432 * <code>tileY</code> arguments, returning it as a
1443 * <code>tileY*getTileHeight(imageIndex)</code> and width and
1451 * <code>tileX</code> and <code>tileY</code> are 0, or throws
1457 * @param tileY the row index (starting with 0) of the tile
1471 int tileX, int tileY) throws IOException {
1472 if ((tileX != 0) || (tileY != 0)) {
1491 * <code>tileX</code> and <code>tileY</code> are 0, or throws an
1497 * @param tileY the row index (starting with 0) of the tile
1517 int tileX, int tileY) throws IOException {
1522 if ((tileX != 0) || (tileY !
1470 readTile(int imageIndex, int tileX, int tileY) argument
1516 readTileRaster(int imageIndex, int tileX, int tileY) argument
[all...]

Completed in 50 milliseconds