Searched refs:startingRow (Results 1 - 3 of 3) 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);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java3320 int startingRow = tree.getLeadSelectionRow();
3326 startingRow++;
3331 startingRow++;
3337 if (startingRow < 0 || startingRow >= tree.getRowCount()) {
3339 startingRow = 0;
3341 TreePath path = tree.getNextMatch(prefix, startingRow,

Completed in 58 milliseconds