Home | History | Annotate | Download | only in util

Lines Matching refs:off

64     public void append(final char[] b, int off, int len) {
68 if ((off < 0) || (off > b.length) || (len < 0) ||
69 ((off + len) < 0) || ((off + len) > b.length)) {
79 System.arraycopy(b, off, this.buffer, this.len, len);
96 public void append(final CharArrayBuffer b, int off, int len) {
100 append(b.buffer, off, len);
119 public void append(final byte[] b, int off, int len) {
123 if ((off < 0) || (off > b.length) || (len < 0) ||
124 ((off + len) < 0) || ((off + len) > b.length)) {
135 for (int i1 = off, i2 = oldlen; i2 < newlen; i1++, i2++) {
145 public void append(final ByteArrayBuffer b, int off, int len) {
149 append(b.buffer(), off, len);