Searched defs:c2bSupp (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DBig5_HKSCS_2001.java74 static char[][] c2bSupp = new char[0x100][]; field in class:Big5_HKSCS_2001.Encoder
78 initc2b(c2bSupp, HKSCS2001Mapping.b2cSuppStr, null);
82 super(cs, big5, c2bBmp, c2bSupp);
H A DBig5_HKSCS.java79 static char[][] c2bSupp = new char[0x100][]; field in class:Big5_HKSCS.Encoder
82 initc2b(c2bSupp, HKSCSMapping.b2cSuppStr, null);
86 super(cs, big5, c2bBmp, c2bSupp);
H A DMS950_HKSCS.java79 static char[][] c2bSupp = new char[0x100][]; field in class:MS950_HKSCS.Encoder
82 initc2b(c2bSupp, HKSCSMapping.b2cSuppStr, null);
86 super(cs, ms950, c2bBmp, c2bSupp);
H A DEUC_TW.java73 char[]c2bSupp/char[]c2bIndexsupp (indexed by lower 16-bit
451 int db = c2bSupp[index];
486 static final char[] c2bSupp; field in class:EUC_TW.Encoder
542 c2bSupp = c2bSupp0;
H A DHKSCS.java200 private char[][] c2bSupp; field in class:HKSCS.Encoder
205 char[][] c2bSupp)
210 this.c2bSupp = c2bSupp;
227 return c2bSupp[(cp >> 8) & 0xff][cp & 0xff];
331 // init c2b/c2bSupp from b2cStr and supp
202 Encoder(Charset cs, DoubleByte.Encoder big5Enc, char[][] c2bBmp, char[][] c2bSupp) argument
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DCharsetMapping.java56 char[] c2bSupp; field in class:CharsetMapping
115 int end = c2bSupp.length / 2;
116 int i = Arrays.binarySearch(c2bSupp, 0, end, (char)cp);
118 return c2bSupp[end + i];
337 c2bSupp = readCharArray();

Completed in 3169 milliseconds