Searched defs:startingRow (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java343 int row = startingRow[pass];
615 private static final byte[] startingRow = { 0, 0, 0, 4, 0, 2, 0, 1 }; field in class:PNGImageDecoder
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java2988 * @param startingRow the row for starting the search
2994 * or startingRow is out of bounds
2997 public TreePath getNextMatch(String prefix, int startingRow, argument
3004 if (startingRow < 0 || startingRow >= max) {
3012 int row = startingRow;
3023 } while (row != startingRow);

Completed in 54 milliseconds