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

  /libcore/luni/src/main/java/com/ibm/icu4jni/charset/
CharsetDecoderICU.java 58 private int outEnd;
141 outEnd, /* input index+1 to be written */
178 outEnd = 0;
213 outEnd, /* input index+1 to be written */
255 outEnd = out.arrayOffset() + out.limit();
259 outEnd = out.remaining();
261 if (allocatedOutput == null || (outEnd > allocatedOutput.length)) {
262 allocatedOutput = new char[outEnd];
CharsetEncoderICU.java 72 private int outEnd;
166 outEnd, /* output index+1 to be written */
230 outEnd, /* output index+1 to be written */
330 outEnd = out.arrayOffset() + out.limit();
334 outEnd = out.remaining();
336 if (allocatedOutput == null || (outEnd > allocatedOutput.length)) {
337 allocatedOutput = new byte[outEnd];

Completed in 1251 milliseconds