Searched defs:maxIndex (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DElement.java54 static int maxIndex = 0; field in class:Element
71 maxIndex = Math.max(maxIndex, index);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DFastInfosetStreamWriterOutput.java92 int maxIndex; field in class:FastInfosetStreamWriterOutput.TablesPerJAXBContext
114 maxIndex = initialIndexOffset + elementIndexes.length + attributeIndexes.length;
135 indexOffset += maxIndex;
137 maxIndex = intialIndexOffset + elementIndexes.length + attributeIndexes.length;
140 if ((indexOffset + maxIndex) < 0) {
145 maxIndex = intialIndexOffset + elementIndexes.length + attributeIndexes.length;
148 if ((indexOffset + maxIndex) < 0) {
174 maxIndex++;
177 if ((indexOffset + maxIndex) < 0) {
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DContextStack.java80 private int maxIndex = 100; field in class:ContextStack
81 private TypeContext[] stack = new TypeContext[maxIndex];
206 if (currentIndex == maxIndex) {
207 int newMax = maxIndex * 2;
209 System.arraycopy(stack,0,newStack,0,maxIndex);
210 maxIndex = newMax;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListSelectionModel.java59 private int maxIndex = MIN; field in class:DefaultListSelectionModel
78 public int getMaxSelectionIndex() { return maxIndex; }
104 return ((index < minIndex) || (index > maxIndex)) ? false : value.get(index);
109 return (minIndex > maxIndex);
273 maxIndex = Math.max(maxIndex, r);
292 for(minIndex = minIndex + 1; minIndex <= maxIndex; minIndex++) {
299 If (r < maxIndex) the maximum has not changed.
300 The case (r > maxIndex) is not possible because r'th value was set.
304 if (r == maxIndex) {
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java54 private int maxIndex = MIN; field in class:OptionListModel
68 public int getMaxSelectionIndex() { return maxIndex; }
87 return ((index < minIndex) || (index > maxIndex)) ? false : value.get(index);
91 return (minIndex > maxIndex);
186 maxIndex = Math.max(maxIndex, r);
207 for(minIndex = minIndex + 1; minIndex <= maxIndex; minIndex++) {
214 If (r < maxIndex) the maximum has not changed.
215 The case (r > maxIndex) is not possible because r'th value was set.
219 if (r == maxIndex) {
[all...]

Completed in 45 milliseconds