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

/openjdk7/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCompoundTextSupport.java40 final byte[] escSequence; field in class:CompoundTextSupport.ControlSequence
43 ControlSequence(byte[] escSequence) { argument
44 this(escSequence, null);
46 ControlSequence(byte[] escSequence, byte[] encoding) { argument
47 if (escSequence == null) {
51 this.escSequence = escSequence;
55 int length = escSequence.length;
57 for (int i = 0; i < escSequence.length; i++) {
58 hash += (((int)escSequence[
459 getStandardDecoder(byte[] escSequence) argument
462 getHighBit(byte[] escSequence) argument
466 getNonStandardDecoder(byte[] escSequence, byte[] encoding) argument
[all...]
H A DCOMPOUND_TEXT_Encoder.java130 byte[] escSequence = CompoundTextSupport.
132 if (escSequence == null) {
135 } else if (escSequence[1] == (byte)0x25 &&
136 escSequence[2] == (byte)0x2F) {
137 initNonStandardCharsetBuffer(enc, escSequence);
138 } else if (des.remaining() >= escSequence.length) {
139 des.put(escSequence, 0, escSequence.length);
175 byte[] escSequence)
180 nonStandardCharsetBuffer.write(escSequence,
174 initNonStandardCharsetBuffer(CharsetEncoder c, byte[] escSequence) argument
[all...]
H A DCOMPOUND_TEXT_Decoder.java560 * 1. 'queue' contains ControlSequence.escSequence
567 byte[] escSequence;
574 escSequence = queue.toByteArray();
581 getNonStandardDecoder(escSequence, encoding);
583 decoder = CompoundTextSupport.getStandardDecoder(escSequence);
584 high = CompoundTextSupport.getHighBit(escSequence);
592 } else if (escSequence.length > 0) {
593 badInputLength = escSequence.length;

Completed in 31 milliseconds