Home | History | Annotate | Download | only in io

Lines Matching refs:off

84      * @param  off   Offset from which to start writing characters
87 public void write(char cbuf[], int off, int len) {
88 if ((off < 0) || (off > cbuf.length) || (len < 0) ||
89 ((off + len) > cbuf.length) || ((off + len) < 0)) {
94 buf.append(cbuf, off, len);
108 * @param off Offset from which to start writing characters
111 public void write(String str, int off, int len) {
112 buf.append(str.substring(off, off + len));