Searched refs:contextChar (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharISCII91.java66 private char contextChar = INVALID_CHAR; field in class:ByteToCharISCII91
91 // if the contextChar is either ATR || EXT set the output to '\ufffd'
92 if(contextChar == '\ufffd') {
94 contextChar = INVALID_CHAR;
109 output[charOff++] = contextChar;
110 contextChar = currentChar;
113 contextChar = currentChar;
117 switch(contextChar) {
144 output[charOff++] = contextChar;
145 contextChar
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DISCII91.java497 private char contextChar = INVALID_CHAR; field in class:ISCII91.Decoder
510 out.put(contextChar);
513 contextChar = INVALID_CHAR;
544 // if the contextChar is either ATR || EXT
546 if(contextChar == '\ufffd') {
550 contextChar = INVALID_CHAR;
568 da[dp++] = contextChar;
569 contextChar = currentChar;
573 contextChar = currentChar;
580 switch(contextChar) {
[all...]

Completed in 30 milliseconds