Home | History | Annotate | Download | only in platform

Lines Matching refs:AttributeInfo

58     private Map<String, AttributeInfo> mAttributeMap;
96 * @return a map from string name to {@link AttributeInfo}
98 public Map<String, AttributeInfo> getAttributeMap() {
192 AttributeInfo[] attributes = style.getAttributes();
193 for (AttributeInfo attribute : attributes) {
221 AttributeInfo[] attributes = style.getAttributes();
222 for (AttributeInfo attribute : attributes) {
329 DeclareStyleableInfo style = new DeclareStyleableInfo(name, (AttributeInfo[])null);
416 * Parses an &lt;attr&gt; node and convert it into an {@link AttributeInfo} if it is valid.
418 private AttributeInfo parseAttr(Node attrNode, Node lastComment) {
419 AttributeInfo info = null;
433 info = new AttributeInfo(info);
459 ArrayList<AttributeInfo> attrs = new ArrayList<AttributeInfo>();
471 AttributeInfo info = parseAttr(node, lastComment);
482 return new DeclareStyleableInfo(styleName, attrs.toArray(new AttributeInfo[attrs.size()]));
486 * Returns the {@link AttributeInfo} for a specific <attr> XML node.
502 private AttributeInfo parseAttributeTypes(Node attrNode, String name) {
515 } else if (format != AttributeInfo.Format.ENUM &&
516 format != AttributeInfo.Format.FLAG) {
559 AttributeInfo info = new AttributeInfo(name, formats);