Home | History | Annotate | Download | only in support

Lines Matching refs:buf

24     private StringBuffer buf;
33 buf = new StringBuffer(16);
34 lock = buf;
44 buf = new StringBuffer(initialSize);
45 lock = buf;
80 return buf;
94 return buf.toString();
100 * in <code>buf</code> to this StringWriter.
102 * @param buf
105 * offset in buf to retrieve characters
113 public void write(char[] buf, int offset, int count) {
115 if (0 <= offset && offset <= buf.length && 0 <= count
116 && count <= buf.length - offset) {
118 this.buf.append(buf, offset, count);
137 buf.append((char) oneChar);
152 buf.append(str);
175 buf.append(sub);