Searched defs:b2c (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/ |
H A D | Big5_Solaris.java | 53 return new DoubleByte.Decoder(this, b2c, b2cSB, 0x40, 0xfe); 61 static char[][] b2c; field in class:Big5_Solaris 72 b2c = Big5.b2c.clone(); 82 if (b2c[0xf9] == DoubleByte.B2C_UNMAPPABLE) { 83 b2c[0xf9] = new char[0xfe - 0x40 + 1]; 84 Arrays.fill(b2c[0xf9], UNMAPPABLE_DECODING); 88 b2c[0xf9][sol[i++] & 0xff - 0x40] = (char)sol[i++];
|
H A D | DoubleByte.java | 71 * char[][] b2c; 82 * return b2c[b1][b2 - b2Min]; 88 * b2c array. 113 final char[][] b2c; field in class:DoubleByte.Decoder 128 char[][] b2c, char[] b2cSB, 131 this.b2c = b2c; 137 Decoder(Charset cs, char[][] b2c, char[] b2cSB, int b2Min, int b2Max) { argument 138 this(cs, 0.5f, 1.0f, b2c, b2cSB, b2Min, b2Max); 161 (c = b2c[b 127 Decoder(Charset cs, float avgcpb, float maxcpb, char[][] b2c, char[] b2cSB, int b2Min, int b2Max) argument 241 Decoder_EBCDIC(Charset cs, char[][] b2c, char[] b2cSB, int b2Min, int b2Max) argument 379 Decoder_EBCDIC_DBCSONLY(Charset cs, char[][] b2c, int b2Min, int b2Max) argument 391 Decoder_EUC_SIM(Charset cs, char[][] b2c, char[] b2cSB, int b2Min, int b2Max) argument 524 initC2B(String[] b2c, String b2cSB, String b2cNR, String c2bNR, int b2Min, int b2Max, char[] c2b, char[] c2bIndex) argument [all...] |
H A D | EUC_TW.java | 65 in a String array table String[plane] b2c. 113 static final String[] b2c = EUC_TWMapping.b2c; field in class:EUC_TW.Decoder 121 // adjust from cns planeNo to the plane index of b2c 154 char c = b2c[p].charAt(index); 495 String[] b2c = Decoder.b2c; 508 for (int p = 0; p < b2c.length; p++) { 509 String db = b2c[p];
|
/openjdk7/jdk/src/share/classes/sun/nio/cs/ |
H A D | SingleByte.java | 51 private final char[] b2c; field in class:SingleByte.Decoder 53 public Decoder(Charset cs, char[] b2c) { argument 55 this.b2c = b2c; 111 return b2c[b + 128]; 260 // init the c2b and c2bIndex tables from b2c. 261 public static void initC2B(char[] b2c, char[] c2bNR, argument 268 for (int i = 0; i < b2c.length; i++) { 269 char c = b2c[i];
|
Completed in 40 milliseconds