Searched refs:minIndex (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java53 private int minIndex = MAX; field in class:OptionListModel
66 public int getMinSelectionIndex() { return isSelectionEmpty() ? -1 : minIndex; }
87 return ((index < minIndex) || (index > maxIndex)) ? false : value.get(index);
91 return (minIndex > maxIndex);
185 minIndex = Math.min(minIndex, r);
201 If (r > minIndex) the minimum has not changed.
202 The case (r < minIndex) is not possible because r'th value was set.
206 if (r == minIndex) {
207 for(minIndex
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListSelectionModel.java58 private int minIndex = MAX; field in class:DefaultListSelectionModel
75 public int getMinSelectionIndex() { return isSelectionEmpty() ? -1 : minIndex; }
104 return ((index < minIndex) || (index > maxIndex)) ? false : value.get(index);
109 return (minIndex > maxIndex);
272 minIndex = Math.min(minIndex, r);
286 If (r > minIndex) the minimum has not changed.
287 The case (r < minIndex) is not possible because r'th value was set.
291 if (r == minIndex) {
292 for(minIndex
[all...]
H A DJTree.java2505 int minIndex = Math.min(index0, index1);
2508 maxIndex - minIndex + 1];
2509 for(int counter = minIndex; counter <= maxIndex; counter++) {
2510 selection[counter - minIndex] =
/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOReadProgressListener.java60 * @param minIndex the index of the first image to be read.
62 void sequenceStarted(ImageReader source, int minIndex); argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DBidiUtils.java202 int minIndex = i;
203 int currentValue = values[result[minIndex]];
206 minIndex = j;
207 currentValue = values[result[minIndex]];
211 result[i] = result[minIndex];
212 result[minIndex] = temp;
H A DExtendedTextSourceLabel.java651 int minIndex = indices[0]; // smallest index seen this cluster
652 int maxIndex = minIndex; // largest index seen this cluster
664 minIndex = indices[numGlyphs - 1];
665 maxIndex = minIndex;
704 minIndex = indices[gx];
705 maxIndex = minIndex;
713 minIndex != nextMin || indices[gx] <= maxIndex)) {
717 (minIndex != nextMin) ||
719 (maxIndex - minIndex > clusterExtraGlyphs))) {
757 minIndex
[all...]
H A DCompositeFont.java298 int minIndex = 0;
301 minIndex = maxIndices[slot - 1];
303 int curIndex = minIndex;
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DReadingInterruptionTest.java178 int minIndex) {};
177 sequenceStarted(ImageReader source, int minIndex) argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DOldHierarchicalLayoutManager.java1002 int minIndex = -1;
1007 minIndex = 0;
1018 minIndex = alreadyAssigned.size();
1044 minIndex = i + 1;
1050 minIndex = i + 1;
1055 assert minIndex != -1;
1060 alreadyAssigned.add(minIndex, node);
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageReader.java95 * @see #minIndex
119 protected int minIndex = 0; field in class:ImageReader
226 * the value of <code>minIndex</code> will be initialized to 0.
234 * this.minIndex</code>; otherwise, the value of
235 * <code>minIndex</code> will be set to <code>index</code>. If
237 * <code>minIndex</code> will remain 0 regardless of any read
312 this.minIndex = 0;
324 * the value of <code>minIndex</code> will be initialized to 0.
332 * this.minIndex</code>; otherwise, the value of
333 * <code>minIndex</cod
2011 processSequenceStarted(int minIndex) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java954 int minIndex = Math.min(index1, index2);
957 if (minIndex >= list.getModel().getSize()) {
961 Rectangle minBounds = getCellBounds(list, minIndex);
966 if (minIndex == maxIndex) {
973 int minRow = convertModelToRow(minIndex);
2573 int minIndex = Math.min(e.getIndex0(), e.getIndex1());
2581 sm.insertIndexInterval(minIndex, maxIndex - minIndex+1, true);
H A DBasicTreeUI.java3841 int minIndex = indices[0];
3843 minIndex = Math.min(indices[i], minIndex);
3846 parentPath.getLastPathComponent(), minIndex);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DInputImageTests.java512 public void sequenceStarted(ImageReader source, int minIndex) {} argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java164 // Throw an IndexOutOfBoundsException if index < minIndex,
165 // and bump minIndex if required.
167 if (imageIndex < minIndex) {
168 throw new IndexOutOfBoundsException("imageIndex < minIndex!");
171 minIndex = imageIndex;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageReader.java472 if (imageIndex < minIndex) {
507 minIndex = imageIndex;
H A DJFIFMarkerSegment.java1252 public void sequenceStarted(ImageReader source, int minIndex) {} argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1753 public void sequenceStarted(ImageReader src, int minIndex) {} argument

Completed in 147 milliseconds