HomeSort by relevance Sort by last modified time
    Searched refs:allocatedInput (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 42 private byte[] allocatedInput = null;
97 allocatedInput = null;
183 if (allocatedInput == null || inEnd > allocatedInput.length) {
184 allocatedInput = new byte[inEnd];
188 in.get(allocatedInput, 0, inEnd);
191 input = allocatedInput;
CharsetEncoderICU.java 58 private char[] allocatedInput = null;
126 allocatedInput = null;
212 if (allocatedInput == null || inEnd > allocatedInput.length) {
213 allocatedInput = new char[inEnd];
217 in.get(allocatedInput, 0, inEnd);
220 input = allocatedInput;

Completed in 150 milliseconds