Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/nio/charset/
DCharsetDecoderICU.java44 private byte[] allocatedInput = null; field in CharsetDecoderICU
101 allocatedInput = null; in implReset()
187 if (allocatedInput == null || inEnd > allocatedInput.length) { in getArray()
188 allocatedInput = new byte[inEnd]; in getArray()
192 in.get(allocatedInput, 0, inEnd); in getArray()
195 input = allocatedInput; in getArray()
DCharsetEncoderICU.java59 private char[] allocatedInput = null; field in CharsetEncoderICU
129 allocatedInput = null; in implReset()
215 if (allocatedInput == null || inEnd > allocatedInput.length) { in getArray()
216 allocatedInput = new char[inEnd]; in getArray()
220 in.get(allocatedInput, 0, inEnd); in getArray()
223 input = allocatedInput; in getArray()