Searched defs:c2bIndex (Results 1 - 8 of 8) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/ |
H A D | IBM942C.java | 59 return new DoubleByte.Encoder(this, c2b, c2bIndex); 64 final static char[] c2bIndex; field in class:IBM942C 85 c2bIndex = Arrays.copyOf(IBM942.c2bIndex, IBM942.c2bIndex.length); 86 c2b[c2bIndex[0] + 0x1a] = 0x1a; 87 c2b[c2bIndex[0] + 0x1c] = 0x1c; 88 c2b[c2bIndex[0] + 0x5c] = 0x5c; 89 c2b[c2bIndex[0] + 0x7e] = 0x7e; 90 c2b[c2bIndex[ [all...] |
H A D | IBM943C.java | 59 return new DoubleByte.Encoder(this, c2b, c2bIndex); 64 final static char[] c2bIndex; field in class:IBM943C 78 c2bIndex = Arrays.copyOf(IBM943.c2bIndex, IBM943.c2bIndex.length); 80 int index = c2bIndex[c >> 8];
|
H A D | IBM949C.java | 59 return new DoubleByte.Encoder(this, c2b, c2bIndex); 64 final static char[] c2bIndex; field in class:IBM949C 77 c2bIndex = Arrays.copyOf(IBM949.c2bIndex, IBM949.c2bIndex.length); 79 int index = c2bIndex[c >> 8];
|
H A D | Big5_Solaris.java | 58 return new DoubleByte.Encoder(this, c2b, c2bIndex); 96 static char[] c2bIndex; field in class:Big5_Solaris 107 c2bIndex = Big5.c2bIndex.clone(); 119 // no need to check c2bIndex[c >>8], we know it points 121 c2b[c2bIndex[c >> 8] + (c & 0xff)] = (char)sol[i++];
|
H A D | DoubleByte.java | 93 * char[] c2bIndex; 96 * return c2b[c2bIndex[ch >> 8] + (ch & 0xff)]; 413 private final char[] c2bIndex; field in class:DoubleByte.Encoder 416 protected Encoder(Charset cs, char[] c2b, char[] c2bIndex) { argument 419 this.c2bIndex = c2bIndex; 422 Encoder(Charset cs, float avg, float max, byte[] repl, char[] c2b, char[] c2bIndex) { argument 425 this.c2bIndex = c2bIndex; 520 return c2b[c2bIndex[c 524 initC2B(String[] b2c, String b2cSB, String b2cNR, String c2bNR, int b2Min, int b2Max, char[] c2b, char[] c2bIndex) argument 609 Encoder_EBCDIC_DBCSONLY(Charset cs, byte[] repl, char[] c2b, char[] c2bIndex) argument 631 Encoder_EBCDIC(Charset cs, char[] c2b, char[] c2bIndex) argument 748 Encoder_EUC_SIM(Charset cs, char[] c2b, char[] c2bIndex) argument [all...] |
H A D | EUC_TW.java | 72 char[]c2b/char[]c2bIndex 463 int index = c2bIndex[c >> 8]; 485 static final char[] c2bIndex; field in class:EUC_TW.Encoder 498 c2bIndex = EUC_TWMapping.c2bIndex; 532 int index = c2bIndex[c >> 8] + (c&0xff);
|
/openjdk7/jdk/src/share/classes/sun/nio/cs/ |
H A D | SingleByte.java | 138 private final char[] c2bIndex; field in class:SingleByte.Encoder 140 public Encoder(Charset cs, char[] c2b, char[] c2bIndex) { argument 143 this.c2bIndex = c2bIndex; 225 char index = c2bIndex[ch >> 8]; 260 // init the c2b and c2bIndex tables from b2c. 262 char[] c2b, char[] c2bIndex) { 263 for (int i = 0; i < c2bIndex.length; i++) 264 c2bIndex[i] = UNMAPPABLE_ENCODING; 273 if (c2bIndex[inde 261 initC2B(char[] b2c, char[] c2bNR, char[] c2b, char[] c2bIndex) argument [all...] |
H A D | CharsetMapping.java | 52 char[] c2bIndex; field in class:CharsetMapping 105 int index = c2bIndex[ch >> 8]; 237 c2b[c2bIndex[c >> 8] + (c&0xff)] = (char)i; 252 c2bIndex = map; 264 c2b[c2bIndex[c >> 8] + (c&0xff)] = (char)(b);
|
Completed in 39 milliseconds