Home | History | Annotate | Download | only in support

Lines Matching refs:offset

97      * Writes <code>count</code> characters starting at <code>offset</code>
101 * @param offset offset in buf to retrieve characters
104 * If offset or count are outside of bounds.
107 public void write(char[] buf, int offset, int count) {
109 if (0 <= offset && offset <= buf.length && 0 <= count
110 && count <= buf.length - offset) {
112 this.buf.append(buf, offset, count);
148 * <code>offset</code> from the String <code>str</code> to this
152 * @param offset the starting point to retrieve characters.
155 * If offset or count are outside of bounds.
158 public void write(String str, int offset, int count) {
159 String sub = str.substring(offset, offset + count);