Searched refs:b2cSupp (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DBig5_HKSCS.java63 private static char[][] b2cSupp = new char[0x100][]; field in class:Big5_HKSCS.Decoder
66 initb2c(b2cSupp, HKSCSMapping.b2cSuppStr);
70 super(cs, big5, b2cBmp, b2cSupp);
H A DBig5_HKSCS_2001.java58 private static char[][] b2cSupp = new char[0x100][]; field in class:Big5_HKSCS_2001.Decoder
61 initb2c(b2cSupp, HKSCS2001Mapping.b2cSuppStr);
65 super(cs, big5, b2cBmp, b2cSupp);
H A DMS950_HKSCS.java63 private static char[][] b2cSupp = new char[0x100][]; field in class:MS950_HKSCS.Decoder
66 initb2c(b2cSupp, HKSCSMapping.b2cSuppStr);
70 super(cs, ms950, b2cBmp, b2cSupp);
H A DHKSCS.java45 private char[][] b2cSupp; field in class:HKSCS.Decoder
50 char[][] b2cBmp, char[][] b2cSupp)
58 this.b2cSupp = b2cSupp;
74 /* if the b2cSupp is null, the subclass need
76 if (b2cSupp == null)
79 return b2cSupp[b1][b2 - b2Min];
48 Decoder(Charset cs, DoubleByte.Decoder big5Dec, char[][] b2cBmp, char[][] b2cSupp) argument
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DHKSCS.java91 boolean[] b2cSupp = new boolean[0x100];
109 b2cSupp[e.bs>>8] = true;
160 if (b2cSupp[i])
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DCharsetMapping.java55 char[] b2cSupp; field in class:CharsetMapping
85 int end = b2cSupp.length / 2;
86 int i = Arrays.binarySearch(b2cSupp, 0, end, (char)db);
88 Character.toChars(b2cSupp[end + i] + 0x20000, cc, 0);
334 b2cSupp = readCharArray();

Completed in 335 milliseconds