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

/openjdk7/jdk/test/sun/nio/cs/
H A DFindOneCharEncoderBugs.java78 /** Returns a direct CharBuffer with the same capacity as ordinary CharBuffer ocb */
79 private static CharBuffer directCharBuffer(CharBuffer ocb) { argument
81 ByteBuffer.allocateDirect(ocb.capacity() * Character.SIZE / Byte.SIZE)
83 check(! ocb.isDirect());
85 equal(ocb.capacity(), dcb.capacity());
118 final CharBuffer ocb = CharBuffer.allocate(1);
119 final CharBuffer dcb = directCharBuffer(ocb);
130 testChar(bytes, ocb, cs, c);

Completed in 123 milliseconds