Lines Matching refs:buf

291             char[] buf = new char[maxStringLength];
294 interfaces[i] = readClass(index, buf);
307 char[] buf = new char[maxStringLength];
321 readClass(index, buf),
322 readUTF8(nameType, buf),
323 readUTF8(nameType + 2, buf));
336 readUTF8(index, buf),
337 readUTF8(index + 2, buf),
357 buf);
366 item.set(tag, readUTF8(index, buf), null, null);
1494 * @param buf buffer to be used to call {@link #readUTF8 readUTF8},
1504 final char[] buf,
1529 av = mv.visitParameterAnnotation(i, readUTF8(v, buf), visible);
1530 v = readAnnotationValues(v + 2, buf, true, av);
1540 * @param buf buffer to be used to call {@link #readUTF8 readUTF8},
1549 final char[] buf,
1557 v = readAnnotationValue(v + 2, buf, readUTF8(v, buf), av);
1561 v = readAnnotationValue(v, buf, null, av);
1575 * @param buf buffer to be used to call {@link #readUTF8 readUTF8},
1584 final char[] buf,
1594 return readAnnotationValues(v + 3, buf, true, null);
1596 return readAnnotationValues(v + 1, buf, false, null);
1606 av.visit(name, readConst(readUnsignedShort(v), buf));
1631 av.visit(name, readUTF8(v, buf));
1635 av.visitEnum(name, readUTF8(v, buf), readUTF8(v + 2, buf));
1639 av.visit(name, Type.getType(readUTF8(v, buf)));
1644 buf,
1646 av.visitAnnotation(name, readUTF8(v, buf)));
1653 buf,
1732 buf,
1744 final char[] buf,
1771 frame[index] = readClass(v, buf);
1812 * @param buf buffer to be used to call {@link #readUTF8 readUTF8},
1829 final char[] buf,
1835 return attrs[i].read(this, off, len, buf, codeOff, labels);
1931 * @param buf buffer to be used to read the item. This buffer must be
1935 public String readUTF8(int index, final char[] buf) {
1942 return strings[item] = readUTF(index + 2, readUnsignedShort(index), buf);
1950 * @param buf buffer to be used to read the string. This buffer must be
1954 private String readUTF(int index, final int utfLen, final char[] buf) {
1971 buf[strLen++] = (char) c;
1977 buf[strLen++] = (char) (((c & 0x1F) << 6) | (d & 0x3F));
1983 buf[strLen++] = (char) (((c & 0x0F) << 12)
1988 return new String(buf, 0, strLen);
1998 * @param buf buffer to be used to read the item. This buffer must be
2002 public String readClass(final int index, final char[] buf) {
2006 return readUTF8(items[readUnsignedShort(index)], buf);
2015 * @param buf buffer to be used to read the item. This buffer must be
2021 public Object readConst(final int item, final char[] buf) {
2033 return Type.getObjectType(readUTF8(index, buf));
2036 return readUTF8(index, buf);