Searched defs:index1 (Results 1 - 25 of 83) sorted by relevance

1234

/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
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractListModel.java98 * are specified by the closed interval index0, index1 -- the endpoints
100 * index0 need not be less than or equal to index1.
104 * @param index1 the other end of the new interval
108 protected void fireContentsChanged(Object source, int index0, int index1) argument
116 e = new ListDataEvent(source, ListDataEvent.CONTENTS_CHANGED, index0, index1);
128 * are specified by a closed interval index0, index1 -- the enpoints
130 * index0 need not be less than or equal to index1.
134 * @param index1 the other end of the new interval
138 protected void fireIntervalAdded(Object source, int index0, int index1) argument
146 e = new ListDataEvent(source, ListDataEvent.INTERVAL_ADDED, index0, index1);
169 fireIntervalRemoved(Object source, int index0, int index1) argument
[all...]
/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/src/share/classes/javax/swing/plaf/
H A DListUI.java79 * @param index1 the first index in the range
83 public abstract Rectangle getCellBounds(JList list, int index1, int index2); argument
/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/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 DDBCS_IBM_ASCII_Decoder.java49 protected short index1[]; field in class:DBCS_IBM_ASCII_Decoder
96 outputChar = index2.charAt(index1[((v & mask1) >> shift)]
141 outputChar = index2.charAt(index1[((v & mask1) >> shift)]
H A DDBCS_ONLY_IBM_EBCDIC_Decoder.java49 protected short index1[]; field in class:DBCS_ONLY_IBM_EBCDIC_Decoder
88 char outputChar = index2.charAt(index1[((v & mask1) >> shift)]
116 char outputChar = index2.charAt(index1[((v & mask1) >> shift)]
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 DDBCS_IBM_ASCII_Encoder.java52 protected short index1[]; field in class:DBCS_IBM_ASCII_Encoder
73 index = index1[((ch & mask1) >> shift)] + (ch & mask2);
110 index = index1[((c & mask1) >> shift)]
160 index = index1[((c & mask1) >> shift)]
H A DDoubleByteDecoder.java41 private short index1[]; field in class:DoubleByteDecoder
56 protected DoubleByteDecoder(Charset cs, short[] index1, String[] index2, argument
59 this.index1 = index1;
175 if (((byte1 < 0) || (byte1 > index1.length))
179 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
180 return index2[index1[byte1] >> 4].charAt(n);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0201.java103 super(cs, index1, index2, 0xFF00, 0x00FF, 8);
206 private final static short index1[] = { field in class:JIS_X_0201.Encoder
H A DJIS_X_0208_MS5022X_Decoder.java1091 protected final static short index1[] = { field in class:JIS_X_0208_MS5022X_Decoder
H A DJIS_X_0208_MS5022X_Encoder.java3279 protected final static short index1[] = { field in class:JIS_X_0208_MS5022X_Encoder
H A DJIS_X_0208_MS932_Decoder.java1021 protected final static short index1[] = { field in class:JIS_X_0208_MS932_Decoder
H A DJIS_X_0208_MS932_Encoder.java3215 protected final static short index1[] = { field in class:JIS_X_0208_MS932_Encoder
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
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11SunUnicode_0.java56 super(cs, index1, index2);
125 private final static short index1[] = { field in class:X11SunUnicode_0.Encoder
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSingleByteEncoder.java46 private final short index1[]; field in class:SingleByteEncoder
55 short[] index1, String index2,
59 this.index1 = index1;
67 char testEncode = index2.charAt(index1[(c & mask1) >> shift]
97 char e = index2.charAt(index1[(c & mask1) >> shift]
130 char e = index2.charAt(index1[(c & mask1) >> shift]
155 return (byte)index2.charAt(index1[(inputChar & mask1) >> shift] +
54 SingleByteEncoder(Charset cs, short[] index1, String index2, int mask1, int mask2, int shift) argument

Completed in 422 milliseconds

1234