Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/nio/charset/
DCharsetDecoderICU.java43 private char[] allocatedOutput = null; field in CharsetDecoderICU
98 allocatedOutput = null; in implReset()
167 if (allocatedOutput == null || outEnd > allocatedOutput.length) { in getArray()
168 allocatedOutput = new char[outEnd]; in getArray()
171 output = allocatedOutput; in getArray()
DCharsetEncoderICU.java59 private byte[] allocatedOutput = null; field in CharsetEncoderICU
127 allocatedOutput = null; in implReset()
196 if (allocatedOutput == null || outEnd > allocatedOutput.length) { in getArray()
197 allocatedOutput = new byte[outEnd]; in getArray()
200 output = allocatedOutput; in getArray()