Home | History | Annotate | Download | only in bytecode

Lines Matching refs:AttributeInfo

27 // Note: if you define a new subclass of AttributeInfo, then
28 // update AttributeInfo.read(), .copy(), and (maybe) write().
33 public class AttributeInfo {
38 protected AttributeInfo(ConstPool cp, int attrname, byte[] attrinfo) {
44 protected AttributeInfo(ConstPool cp, String attrname) {
56 public AttributeInfo(ConstPool cp, String attrname, byte[] attrinfo) {
60 protected AttributeInfo(ConstPool cp, int n, DataInputStream in)
71 static AttributeInfo read(ConstPool cp, DataInputStream in)
121 return new AttributeInfo(cp, name, in);
171 public AttributeInfo copy(ConstPool newCp, Map classnames) {
178 return new AttributeInfo(newCp, getName(), newInfo);
192 AttributeInfo attr = (AttributeInfo)list.get(i);
199 static AttributeInfo lookup(ArrayList list, String name) {
205 AttributeInfo ai = (AttributeInfo)iterator.next();
219 AttributeInfo ai = (AttributeInfo)iterator.next();
233 AttributeInfo attr = (AttributeInfo)list.get(i);
245 AttributeInfo attr = (AttributeInfo)list.get(i);
264 AttributeInfo ai = (AttributeInfo)iterator.next();
272 AttributeInfo ai = (AttributeInfo)iterator.next();
282 AttributeInfo ai = (AttributeInfo)iterator.next();