Home
last modified time | relevance | path

Searched refs:inWithoutArray (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/test/java/libcore/java/nio/charset/
DOldCharsetEncoderDecoderBufferTest.java81 ByteBuffer inWithoutArray = ByteBuffer.wrap(new byte[] { (byte) 'x' }).asReadOnlyBuffer(); in testDecoderInputBuffer() local
82 assertFalse(inWithoutArray.hasArray()); in testDecoderInputBuffer()
83 decoder.decode(inWithoutArray, out, true); in testDecoderInputBuffer()
139 CharBuffer inWithoutArray = CharBuffer.wrap("x"); in testEncoderInputBuffer() local
140 assertFalse(inWithoutArray.hasArray()); in testEncoderInputBuffer()
141 encoder.encode(inWithoutArray, out, true); in testEncoderInputBuffer()