Searched refs:directMapTable (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteISCII91.java68 private final static byte[] directMapTable = ISCII91.getEncoderMappingTable(); field in class:CharToByteISCII91
144 if (index == Integer.MIN_VALUE || directMapTable[index] == NO_CHAR) {
160 output[byteOff++] = directMapTable[index++];
161 if(directMapTable[index] != NO_CHAR) {
165 output[byteOff++] = directMapTable[index];
H A DByteToCharISCII91.java58 private static final char[] directMapTable = ISCII91.getDirectMapTable(); field in class:ByteToCharISCII91
89 char currentChar = directMapTable[index];
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DISCII91.java68 private static final char[] directMapTable = { field in class:ISCII91
343 return directMapTable;
542 char currentChar = directMapTable[index];
682 char currentChar = directMapTable[index];
826 //private static final byte[] directMapTable = c2b.getISCIIEncoderMap();

Completed in 32 milliseconds