Lines Matching refs:attr
576 AttributeInfo attr = attrs.get(field); in selfAttributes() local
577 if (attr == null) { in selfAttributes()
578 attr = new AttributeInfo(this, field); in selfAttributes()
579 attrs.put(field, attr); in selfAttributes()
581 tag.setAttribute(attr); in selfAttributes()
590 AttributeInfo attr = attrs.get(field); in selfAttributes() local
591 if (attr == null) { in selfAttributes()
592 attr = new AttributeInfo(this, field); in selfAttributes()
593 attrs.put(field, attr); in selfAttributes()
595 tag.setAttribute(attr); in selfAttributes()
596 attr.methods.add(m); in selfAttributes()
606 AttributeInfo attr = attrs.get(field); in selfAttributes() local
607 if (attr == null) { in selfAttributes()
608 attr = new AttributeInfo(this, field); in selfAttributes()
609 attrs.put(field, attr); in selfAttributes()
611 tag.setAttribute(attr); in selfAttributes()
612 attr.methods.add(m); in selfAttributes()
1095 for (AttributeInfo attr: selfAttributes) { in makeHDF()
1096 if (attr.checkLevel()) { in makeHDF()
1097 attr.makeHDF(data, "class.attrs." + i); in makeHDF()
1147 for (AttributeInfo attr: cl.selfAttributes()) { in makeInheritedHDF()
1148 attr.makeHDF(data, base + ".attrs." + i); in makeInheritedHDF()