Home | History | Annotate | Download | only in io

Lines Matching refs:sbuf

3063             StringBuilder sbuf = new StringBuilder();
3071 utflen -= readUTFSpan(sbuf, utflen);
3075 utflen -= readUTFChar(sbuf, utflen);
3088 return sbuf.toString();
3095 * sbuf. Returns the number of bytes consumed.
3097 private long readUTFSpan(StringBuilder sbuf, long utflen)
3163 sbuf.append(cbuf, 0, cpos);
3169 * the character to sbuf, and returns the number of bytes consumed.
3174 private int readUTFChar(StringBuilder sbuf, long utflen)
3188 sbuf.append((char) b1);
3200 sbuf.append((char) (((b1 & 0x1F) << 6) |
3216 sbuf.append((char) (((b1 & 0x0F) << 12) |