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

  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/charset/
CharsetDecoderICU.java 65 private int outEnd;
177 outEnd, /* input index+1 to be written */
251 outEnd, /* input index+1 to be written */
291 outEnd = out.arrayOffset() + out.limit();
295 outEnd = out.remaining();
297 if (allocatedOutput == null || (outEnd > allocatedOutput.length)) {
298 allocatedOutput = new char[outEnd];
CharsetEncoderICU.java 61 private int outEnd;
171 outEnd, /* output index+1 to be written */
236 outEnd, /* output index+1 to be written */
333 outEnd = out.arrayOffset() + out.limit();
337 outEnd = out.remaining();
339 if (allocatedOutput == null || (outEnd > allocatedOutput.length)) {
340 allocatedOutput = new byte[outEnd];

Completed in 44 milliseconds