Home | History | Annotate | Download | only in cs

Lines Matching refs:cbuf

111         char cbuf[] = new char[1];
112 cbuf[0] = (char) c;
113 write(cbuf, 0, 1);
116 public void write(char cbuf[], int off, int len) throws IOException {
119 if ((off < 0) || (off > cbuf.length) || (len < 0) ||
120 ((off + len) > cbuf.length) || ((off + len) < 0)) {
125 implWrite(cbuf, off, len);
133 char cbuf[] = new char[len];
134 str.getChars(off, off + len, cbuf, 0);
135 write(cbuf, 0, len);
262 void implWrite(char cbuf[], int off, int len)
265 CharBuffer cb = CharBuffer.wrap(cbuf, off, len);