Searched refs:b2c (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DBig5_Solaris.java53 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 DDoubleByte.java71 * 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 DIBM834.java53 this, IBM933.b2c, 0x40, 0xfe); // hardcode the b2min/max
H A DIBM942C.java52 IBM942.b2c,
H A DIBM943C.java52 IBM943.b2c,
H A DIBM949C.java52 IBM949.b2c,
H A DEUC_TW.java65 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];
H A DHKSCS.java185 static void initb2c(char[][]b2c, String[] b2cStr)
189 b2c[i] = DoubleByte.B2C_UNMAPPABLE;
191 b2c[i] = b2cStr[i].toCharArray();
/openjdk7/jdk/make/tools/CharsetMapping/
H A DDoubleByte-X.java.template52 return new DoubleByte.Decoder$DECTYPE$(this, b2c, b2cSB, $B2MIN$, $B2MAX$);
61 static char[][] b2c = new char[b2cStr.length][];
68 synchronized (b2c) {
73 b2c[i] = DoubleByte.B2C_UNMAPPABLE;
75 b2c[i] = b2cStr[i].toCharArray();
H A DSingleByte-X.java.template51 return new SingleByte.Decoder(this, b2c);
72 private final static char[] b2c = b2cTable.toCharArray();
77 char[] b2cMap = b2c;
/openjdk7/jdk/test/sun/nio/cs/
H A DTestISCII91.java37 ByteToCharConverter b2c = new ByteToCharISCII91();
48 char[] c2bChars = b2c.convertAll(c2bBytes);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSingleByte.java51 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];
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DDBCS.java187 String b2c = b2cSB.toString();
227 .replace("$B2C$", b2c)
H A DSBCS.java207 String b2c = b2cSB.toString();
249 line = line.replace("$B2CTABLE$", b2c);

Completed in 41 milliseconds