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.java42 private byte[] allocatedInput = null; field in CharsetDecoderICU
97 allocatedInput = null; in implReset()
183 if (allocatedInput == null || inEnd > allocatedInput.length) { in getArray()
184 allocatedInput = new byte[inEnd]; in getArray()
188 in.get(allocatedInput, 0, inEnd); in getArray()
191 input = allocatedInput; in getArray()
DCharsetEncoderICU.java58 private char[] allocatedInput = null; field in CharsetEncoderICU
126 allocatedInput = null; in implReset()
212 if (allocatedInput == null || inEnd > allocatedInput.length) { in getArray()
213 allocatedInput = new char[inEnd]; in getArray()
217 in.get(allocatedInput, 0, inEnd); in getArray()
220 input = allocatedInput; in getArray()