Searched refs:newOffset (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/text/
H A DCollationElementIterator.java169 * If {@code newOffset} corresponds to a character which is part of a
180 * @param newOffset
185 public void setOffset(int newOffset) { argument
186 this.icuIterator.setOffset(newOffset);
/libcore/luni/src/main/java/java/io/
H A DPushbackInputStream.java171 int copiedBytes = 0, copyLength = 0, newOffset = byteOffset;
175 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
176 newOffset += copyLength;
185 int inCopied = in.read(buffer, newOffset, byteCount - copiedBytes);
H A DPushbackReader.java179 int newOffset = offset;
184 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
185 newOffset += copyLength;
194 int inCopied = in.read(buffer, newOffset, count - copiedChars);

Completed in 73 milliseconds