Searched refs:cnsPlane (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharEUC_TW.java44 private int cnsPlane = 0; field in class:ByteToCharEUC_TW
85 cnsPlane = 3;
105 cnsPlane = 0;
108 cnsPlane);
117 cnsPlane = (input[byteOff] & (byte)0x0f);
119 cnsPlane = (cnsPlane == 15)? 8 : cnsPlane;
121 if (cnsPlane < 15) {
143 cnsPlane
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DEUC_TW_OLD.java10615 int cnsPlane = (sa[sp +1] & 0xff) - 0xa0;
10617 cnsPlane = (cnsPlane == 15)? 8 : cnsPlane;
10618 if (cnsPlane - 2 >= cnsChars.length || cnsPlane - 2 < 0)
10624 if (cnsPlane < 3) {
10626 cnsChars[cnsPlane - 2]);
10634 cnsChars[cnsPlane - 2]);
10691 int cnsPlane
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DEUC_TW.java183 int cnsPlane = cnspToIndex[sa[sp + 1] & 0xff];
184 if (cnsPlane < 0)
188 char[] cc = toUnicode(byte1, byte2, cnsPlane);
241 int cnsPlane = cnspToIndex[src.get() & 0xff];
242 if (cnsPlane < 0)
246 char[] cc = toUnicode(byte1, byte2, cnsPlane);

Completed in 78 milliseconds