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.java45 private char[] allocatedOutput = null; field in CharsetDecoderICU
102 allocatedOutput = null; in implReset()
171 if (allocatedOutput == null || outEnd > allocatedOutput.length) { in getArray()
172 allocatedOutput = new char[outEnd]; in getArray()
175 output = allocatedOutput; in getArray()
DCharsetEncoderICU.java60 private byte[] allocatedOutput = null; field in CharsetEncoderICU
130 allocatedOutput = null; in implReset()
199 if (allocatedOutput == null || outEnd > allocatedOutput.length) { in getArray()
200 allocatedOutput = new byte[outEnd]; in getArray()
203 output = allocatedOutput; in getArray()