Searched refs:index1 (Results 1 - 25 of 218) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DListDataEvent.java56 private int index1; field in class:ListDataEvent
84 public int getIndex1() { return index1; }
88 * index1, index0 and index1 will be swapped such that
89 * index0 will always be <= index1.
95 * @param index1 the other end of the new interval
97 public ListDataEvent(Object source, int type, int index0, int index1) { argument
100 this.index0 = Math.min(index0, index1);
101 this.index1 = Math.max(index0, index1);
[all...]
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCSDecoderMapping.java39 private short[] index1; field in class:DBCSDecoderMapping
51 public DBCSDecoderMapping(short[] index1, String[] index2, argument
53 this.index1 = index1;
69 if (((byte1 < 0) || (byte1 > index1.length))
73 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
74 return index2[index1[byte1] >> 4].charAt(n);
H A DIBM942C_OLD.java76 protected static final short index1[]; field in class:IBM942C_OLD.Encoder
86 index1 = new short[IBM942_OLD.Encoder.index1.length];
89 System.arraycopy(IBM942_OLD.Encoder.index1,
91 index1,
93 IBM942_OLD.Encoder.index1.length);
96 index1[i] = (short)(o + i * (1<<shift));
101 super(cs, index1, index2a);
H A DIBM943C_OLD.java77 protected static final short index1[]; field in class:IBM943C_OLD.Encoder
87 index1 = new short[IBM943_OLD.Encoder.index1.length];
88 System.arraycopy(IBM943_OLD.Encoder.index1,
90 index1,
92 IBM943_OLD.Encoder.index1.length);
95 index1[i] = (short)(o + i * (1<<shift));
100 super(cs, index1, index2a);
H A DIBM948_OLD.java63 return Decoder.index1;
71 return Encoder.index1;
91 super.index1 = this.index1;
165 private static final short index1[] = field in class:IBM948_OLD.Decoder
2428 super.index1 = index1;
2433 private static final short index1[] = field in class:IBM948_OLD.Encoder
H A DIBM950_OLD.java61 return Decoder.index1;
69 return Encoder.index1;
89 super.index1 = this.index1;
163 private static final short index1[] = field in class:IBM950_OLD.Decoder
2497 super.index1 = index1;
2502 private static final short index1[] = field in class:IBM950_OLD.Encoder
H A DIBM1381_OLD.java78 return Decoder.index1;
87 return Encoder.index1;
108 super.index1 = this.index1;
184 private static final short index1[] = field in class:IBM1381_OLD.Decoder
1416 super.index1 = index1;
1426 super.index1 = modIdx1;
1431 private static final short index1[] = field in class:IBM1381_OLD.Encoder
H A DIBM930_OLD.java77 return Decoder.index1;
86 return Encoder.index1;
106 super.index1 = this.index1;
149 private static final short index1[] = field in class:IBM930_OLD.Decoder
1499 super.index1 = index1;
1509 super.index1 = modIdx1;
1514 private static final short index1[] = field in class:IBM930_OLD.Encoder
H A DIBM935_OLD.java76 return Decoder.index1;
84 return Encoder.index1;
104 super.index1 = this.index1;
145 private static final short index1[] = field in class:IBM935_OLD.Decoder
1292 super.index1 = index1;
1302 super.index1 = modIdx1;
1307 private static final short index1[] = field in class:IBM935_OLD.Encoder
H A DIBM937_OLD.java76 return Decoder.index1;
84 return Encoder.index1;
104 super.index1 = this.index1;
145 private static final short index1[] = field in class:IBM937_OLD.Decoder
2403 super.index1 = index1;
2413 super.index1 = modIdx1;
2418 private static final short index1[] = field in class:IBM937_OLD.Encoder
H A DIBM939_OLD.java77 return Decoder.index1;
85 return Encoder.index1;
105 super.index1 = this.index1;
146 private static final short index1[] = field in class:IBM939_OLD.Decoder
1495 super.index1 = index1;
1505 super.index1 = modIdx1;
1510 private static final short index1[] = field in class:IBM939_OLD.Encoder
H A DIBM942_OLD.java63 return Decoder.index1;
71 return Encoder.index1;
90 super.index1 = this.index1;
176 protected static final short index1[] = field in class:IBM942_OLD.Decoder
1281 super.index1 = index1;
1291 super.index1 = modIdx1;
1296 protected static final short index1[] = field in class:IBM942_OLD.Encoder
H A DIBM943_OLD.java61 return Decoder.index1;
69 return Encoder.index1;
87 super.index1 = this.index1;
172 static final short[] index1 = { field in class:IBM943_OLD.Decoder
1340 super.index1 = index1;
1350 super.index1 = modIdx1;
1355 static final short[] index1 = { field in class:IBM943_OLD.Encoder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DMS1252Encoder.java47 super(cs, index1, index2, 0xFF00, 0x00FF, 8);
199 private final static short index1[] = { field in class:MS1252Encoder
219 char test = index2.charAt( index1[(c&0xFF00)>>8] + (c&0xFF) );
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteJIS0201.java46 super.index1 = index1;
52 return (byte)index2.charAt(index1[(inputChar & mask1) >> shift]
57 if (index2.charAt(index1[((ch & mask1) >> shift)] + (ch & mask2)) != '\u0000')
162 private final static short index1[] = { field in class:CharToByteJIS0201
H A DCharToByteJIS0208.java44 super.index1 = JIS_X_0208_Encoder.getIndex1();
H A DCharToByteJIS0208_Solaris.java49 super.index1 = JIS_X_0208_Solaris_Encoder.getIndex1();
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0208_Solaris_Decoder.java39 index1,
176 private static final short index1[] = { field in class:JIS_X_0208_Solaris_Decoder
213 return index1;
H A DJIS_X_0208_Decoder.java38 index1,
971 private final static short index1[] = { field in class:JIS_X_0208_Decoder
1011 return index1;
H A DJIS_X_0208_Solaris_Encoder.java40 index1,
2686 private final static short index1[] = { field in class:JIS_X_0208_Solaris_Encoder
2722 return index1;
H A DJIS_X_0212_Decoder.java39 index1,
54 return index1;
881 private final static short index1[] = { field in class:JIS_X_0212_Decoder
H A DJIS_X_0212_Encoder.java51 index1,
69 return index1;
2967 private final static short index1[] = { field in class:JIS_X_0212_Encoder
H A DJIS_X_0212_Solaris_Decoder.java38 index1,
53 return index1;
904 private final static short index1[] = { field in class:JIS_X_0212_Solaris_Decoder
H A DJIS_X_0212_Solaris_Encoder.java41 index1,
60 return index1;
3054 private final static short index1[] = { field in class:JIS_X_0212_Solaris_Encoder
/openjdk7/jdk/src/share/classes/javax/swing/
H A DListSelectionModel.java37 * all take a pair of indices, index0 and index1, that represent
39 * index1.
74 * Changes the selection to be between {@code index0} and {@code index1}
76 * {@code index1}.
85 * @param index1 other end of the interval
88 void setSelectionInterval(int index0, int index1); argument
93 * and the indices between {@code index0} and {@code index1} inclusive.
94 * {@code index0} doesn't have to be less than or equal to {@code index1}.
107 * @param index1 other end of the interval
111 void addSelectionInterval(int index0, int index1); argument
132 removeSelectionInterval(int index0, int index1) argument
218 removeIndexInterval(int index0, int index1) argument
[all...]

Completed in 393 milliseconds

123456789