Home | History | Annotate | Download | only in util

Lines Matching refs:off

62     public void append(final byte[] b, int off, int len) {
66 if ((off < 0) || (off > b.length) || (len < 0) ||
67 ((off + len) < 0) || ((off + len) > b.length)) {
77 System.arraycopy(b, off, this.buffer, this.len, len);
90 public void append(final char[] b, int off, int len) {
94 if ((off < 0) || (off > b.length) || (len < 0) ||
95 ((off + len) < 0) || ((off + len) > b.length)) {
106 for (int i1 = off, i2 = oldlen; i2 < newlen; i1++, i2++) {
112 public void append(final CharArrayBuffer b, int off, int len) {
116 append(b.buffer(), off, len);