Searched defs:byteToCharTable (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharJIS0201.java41 super.byteToCharTable = byteToCharTable;
44 private final static String byteToCharTable = field in class:ByteToCharJIS0201
H A DByteToCharSingleByte.java40 protected String byteToCharTable; field in class:ByteToCharSingleByte
43 return byteToCharTable;
93 *outputChar = byteToCharTable[input[byteOff] + 128];
124 if (n >= byteToCharTable.length() || n < 0)
126 return byteToCharTable.charAt(n);
H A DByteToCharCp33722.java43 private String byteToCharTable; field in class:ByteToCharCp33722
53 byteToCharTable = nioCoder.getDecoderSingleByteMappings();
119 outputChar = byteToCharTable.charAt(byte1);
H A DByteToCharEUC.java40 protected String byteToCharTable; field in class:ByteToCharEUC
102 outputChar = byteToCharTable.charAt(byte1);
H A DByteToCharCp964.java46 private String byteToCharTable; field in class:ByteToCharCp964
57 byteToCharTable = nioCoder.getDecoderSingleByteMappings();
126 outputChar = byteToCharTable.charAt(byte1);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSingleByteDecoder.java45 private final String byteToCharTable; field in class:SingleByteDecoder
47 protected SingleByteDecoder(Charset cs, String byteToCharTable) { argument
49 this.byteToCharTable = byteToCharTable;
112 if (n >= byteToCharTable.length() || n < 0)
114 return byteToCharTable.charAt(n);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0201.java61 super(cs, byteToCharTable);
64 private final static String byteToCharTable = field in class:JIS_X_0201.Decoder
H A DIBM964.java75 return Decoder.byteToCharTable;
169 outputChar = byteToCharTable.charAt(byte1);
230 outputChar = byteToCharTable.charAt(byte1);
264 private final static String byteToCharTable; field in class:IBM964.Decoder
271 byteToCharTable =
H A DIBM33722.java75 return Decoder.byteToCharTable;
166 outputChar = byteToCharTable.charAt(byte1);
227 outputChar = byteToCharTable.charAt(byte1);
261 private final static String byteToCharTable; field in class:IBM33722.Decoder
266 byteToCharTable =
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DSimpleEUCDecoder.java48 protected static String byteToCharTable; field in class:SimpleEUCDecoder
79 outputChar = byteToCharTable.charAt(byte1);
122 outputChar = byteToCharTable.charAt(byte1);
H A DIBM1383_OLD.java64 return Decoder.byteToCharTable;
87 super.byteToCharTable = this.byteToCharTable;
91 private final static String byteToCharTable; field in class:IBM1383_OLD.Decoder
94 byteToCharTable =
H A DIBM970_OLD.java69 return Decoder.byteToCharTable;
92 super.byteToCharTable = byteToCharTable;
96 private final static String byteToCharTable; field in class:IBM970_OLD.Decoder
99 byteToCharTable =

Completed in 196 milliseconds