Searched refs:firstIndex (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DListSelectionEvent.java55 private int firstIndex; field in class:ListSelectionEvent
60 * Represents a change in selection status between {@code firstIndex} and
61 * {@code lastIndex}, inclusive. {@code firstIndex} is less than or equal to
65 * @param firstIndex the first index in the range, <= lastIndex
66 * @param lastIndex the last index in the range, >= firstIndex
70 public ListSelectionEvent(Object source, int firstIndex, int lastIndex, argument
74 this.firstIndex = firstIndex;
86 public int getFirstIndex() { return firstIndex; }
117 " firstIndex
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DPatternInterner.java76 h = firstIndex(p);
78 for (h = firstIndex(p); table[h] != null; h = nextIndex(h)) {
91 for (j = firstIndex(oldTable[i]);
97 for (h = firstIndex(p); table[h] != null; h = nextIndex(h));
105 private int firstIndex(Pattern p) { method in class:PatternInterner
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamBufferCreator.java83 int firstIndex = value.indexOf(":");
85 if(firstIndex != -1 && lastIndex == firstIndex){
86 String valuePrefix = value.substring(0, firstIndex);
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCStrike.java537 final int firstIndex = index >> shift;
538 final long[] firstLayerRow = cache[firstIndex];
540 return firstLayerRow[index - (firstIndex * (1 << shift))];
544 final int firstIndex = index >> shift;
545 long[] firstLayerRow = cache[firstIndex];
547 cache[firstIndex] = firstLayerRow = new long[secondLayerLength];
549 firstLayerRow[index - (firstIndex * (1 << shift))] = value;
621 final int firstIndex = index >> shift;
622 final float[] firstLayerRow = cache[firstIndex];
624 return firstLayerRow[index - (firstIndex * (
[all...]
H A DCCharToGlyphMapper.java233 final int firstIndex = index >> shift;
234 final int[] firstLayerRow = cache[firstIndex];
236 return firstLayerRow[index - (firstIndex * (1 << shift))];
240 final int firstIndex = index >> shift;
241 int[] firstLayerRow = cache[firstIndex];
243 cache[firstIndex] = firstLayerRow = new int[secondLayerLength];
245 firstLayerRow[index - (firstIndex * (1 << shift))] = value;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DJNITypeParser.java47 int firstIndex = signature.indexOf('[');
48 int index = firstIndex;
54 if (firstIndex != -1) {
55 signature = signature.substring(0, firstIndex);
H A DConcreteMethodImpl.java73 private int firstIndex = -1; field in class:ConcreteMethodImpl
168 firstIndex = 0;
292 if (firstIndex == -1) {
299 if (codeIndex < firstIndex || codeIndex > lastIndex) {
334 if (firstIndex == -1) {
341 if (codeIndex < firstIndex || codeIndex > lastIndex) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DJNITypeParser.java48 int firstIndex = signature.indexOf('[');
49 int index = firstIndex;
55 if (firstIndex != -1) {
56 signature = signature.substring(0, firstIndex);
H A DConcreteMethodImpl.java79 private long firstIndex = -1; field in class:ConcreteMethodImpl
157 if (firstIndex == -1) {
164 if (codeIndex < firstIndex || codeIndex > lastIndex) {
174 if (firstIndex == -1) {
181 if (codeIndex < firstIndex || codeIndex > lastIndex) {
413 * firstIndex, lastIndex, and startLocation need to be
417 firstIndex = lntab.start;
429 firstIndex);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DInterOperableNamingImpl.java213 int firstIndex = 0;
216 theStringComponents[i] = theStringifiedName.substring( firstIndex,
221 firstIndex = theIndices[i]+1;
224 firstIndex = 0;
237 if( firstIndex != 0 && i == indicesCount ) {
239 theStringifiedName.substring( firstIndex );
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultComboBoxModel.java170 int firstIndex = 0;
174 fireIntervalRemoved(this, firstIndex, lastIndex);
H A DDefaultListSelectionModel.java160 * of the selection, in the closed interval <code>firstIndex</code>,
163 protected void fireValueChanged(int firstIndex, int lastIndex) { argument
164 fireValueChanged(firstIndex, lastIndex, getValueIsAdjusting());
168 * @param firstIndex the first index in the interval
174 protected void fireValueChanged(int firstIndex, int lastIndex, boolean isAdjusting) argument
182 e = new ListSelectionEvent(this, firstIndex, lastIndex, isAdjusting);
H A DJTree.java2918 // e = new ListSelectionEvent(this, firstIndex, lastIndex);
3444 int firstIndex = getClosestRowForLocation
3447 if(firstIndex != -1) {
3448 rowBounds = getRowBounds(firstIndex);
3457 if(firstIndex != 0) {
3458 rowBounds = getRowBounds(firstIndex - 1);
H A DJList.java1776 * @param firstIndex the first index in the range, {@code <= lastIndex}
1777 * @param lastIndex the last index in the range, {@code >= firstIndex}
1786 protected void fireSelectionValueChanged(int firstIndex, int lastIndex, argument
1795 e = new ListSelectionEvent(this, firstIndex, lastIndex,
H A DJTable.java4631 int firstIndex = limit(e.getFirstIndex(), 0, getColumnCount()-1);
4658 Rectangle firstColumnRect = getCellRect(minRow, firstIndex, false);
4695 int firstIndex = limit(e.getFirstIndex(), 0, getRowCount()-1);
4697 Rectangle firstRowRect = getCellRect(firstIndex, 0, false);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java125 * in the closed interval firstIndex,lastIndex, has changed.
127 protected void fireValueChanged(int firstIndex, int lastIndex) { argument
128 fireValueChanged(firstIndex, lastIndex, getValueIsAdjusting());
132 * @param firstIndex The first index in the interval.
137 protected void fireValueChanged(int firstIndex, int lastIndex, boolean isAdjusting) argument
145 e = new ListSelectionEvent(this, firstIndex, lastIndex, isAdjusting);
H A DHTMLWriter.java768 int firstIndex = -1;
775 firstIndex = i;
779 if (firstIndex != -1) {
781 boolean removeAll = ((size - firstIndex) == tagsToRemove.size());
782 for (int i = size - 1; i >= firstIndex; i--) {
793 // Have to output any tags after firstIndex that still remaing,
796 for (int i = firstIndex; i < size; i++) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTabbedPaneUI.java125 int firstIndex = tabRuns[ currentRun ];
257 if ( tabIndex==firstIndex && tabIndex!=tabRuns[runCount - 1] ) {
359 int firstIndex = tabRuns[ currentRun ];
370 if ( tabIndex != firstIndex && tabsOpaque ) {
400 if ( tabIndex != firstIndex ) {
451 else if ( tabIndex != firstIndex ) {
458 if ( tabIndex != firstIndex ) {
476 int firstIndex = tabRuns[ currentRun ];
570 if (tabIndex != firstIndex) {
600 if ( tabIndex==firstIndex
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DRepositoryId.java334 int firstIndex = repId.indexOf(':') ;
335 if (firstIndex == -1)
337 int secondIndex = repId.indexOf( ':', firstIndex + 1 ) ;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java2626 int firstIndex = Math.min(size - 1, Math.max(e.getFirstIndex(), 0));
2629 Rectangle bounds = getCellBounds(list, firstIndex, lastIndex);
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec2107 (int firstIndex "The first index to retrieve.")
2131 (int firstIndex "The first index to set.")

Completed in 583 milliseconds