/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/ |
D | ViewClassInfo.java | 37 private AttributeInfo[] mAttributes; field in ViewClassInfo 47 private AttributeInfo[] mAttributes; field in ViewClassInfo.LayoutParamsInfo 54 mAttributes = new AttributeInfo[0]; in LayoutParamsInfo() 71 return mAttributes; in getAttributes() 75 mAttributes = attributes; in setAttributes() 89 mAttributes = new AttributeInfo[0]; in ViewClassInfo() 119 return mAttributes; in getAttributes() 146 mAttributes = attributes; in setAttributes()
|
D | DeclareStyleableInfo.java | 29 private final AttributeInfo[] mAttributes; field in DeclareStyleableInfo 43 mAttributes = attributes == null ? new AttributeInfo[0] : attributes; in DeclareStyleableInfo() 66 mAttributes = new AttributeInfo[0]; in DeclareStyleableInfo() 68 mAttributes = new AttributeInfo[attrs.length]; in DeclareStyleableInfo() 69 System.arraycopy(attrs, 0, mAttributes, 0, attrs.length); in DeclareStyleableInfo() 80 return mAttributes; in getAttributes()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
D | WidgetPullParser.java | 38 private String[][] mAttributes = new String[][] { field in WidgetPullParser 48 mAttributes[0][1] = segments[segments.length-1]; in WidgetPullParser() 73 return mAttributes.length; // text attribute in getAttributeCount() 78 if (index < mAttributes.length) { in getAttributeName() 79 return mAttributes[index][0]; in getAttributeName() 98 if (index < mAttributes.length) { in getAttributeValue() 99 return mAttributes[index][1]; in getAttributeValue() 108 for (String[] attribute : mAttributes) { in getAttributeValue()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
D | TestDragElement.java | 38 private Map<String, TestAttribute> mAttributes = new HashMap<String, TestAttribute>(); field in TestDragElement 65 if (mAttributes == null) { in set() 66 mAttributes = new HashMap<String, TestAttribute>(); in set() 69 mAttributes.put(uri + name, new TestAttribute(uri, name, value)); in set() 107 if (mAttributes == null) { in getAttribute() 111 return mAttributes.get(uri + localName); in getAttribute() 116 return mAttributes.values().toArray(new IDragAttribute[mAttributes.size()]); in getAttributes() 150 return "TestDragElement [fqn=" + mFqcn + ", attributes=" + mAttributes + ", bounds=" in toString()
|
D | TestNode.java | 67 private Map<String, IAttribute> mAttributes = new HashMap<String, IAttribute>(); field in TestNode 161 return mAttributes.values().toArray(new IAttribute[mAttributes.size()]); in getLiveAttributes() 181 IAttribute attr = mAttributes.get(uri + attrName); in getStringAttr() 212 mAttributes.put(uri + localName, new TestAttribute(uri, localName, value)); in setAttribute() 220 + mAttributeInfos + ", attributes=" + mAttributes + ", bounds=" + mBounds + "]"; in toString()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | SimpleElement.java | 46 private final List<IDragAttribute> mAttributes = new ArrayList<IDragAttribute>(); field in SimpleElement 112 mCachedAttributes = mAttributes.toArray(new IDragAttribute[mAttributes.size()]); in getAttributes() 119 for (IDragAttribute attr : mAttributes) { in getAttribute() 138 mAttributes.add(attr); in addAttribute() 201 for (IDragAttribute a : mAttributes) { in toString() 339 mAttributes.size() == se.mAttributes.size() && in equals() 341 mAttributes.equals(se.mAttributes) && in equals() 351 c = 31*c + mAttributes.hashCode(); in hashCode()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/ |
D | MockXmlNode.java | 42 private MockNamedNodeMap mAttributes; field in MockXmlNode 95 if (mAttributes == null) { in addAttributes() 96 mAttributes = new MockNamedNodeMap(); in addAttributes() 99 MockXmlNode node = mAttributes.addAttribute(namespaceURI, localName, value); in addAttributes() 130 return mAttributes; in getAttributes()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
D | ElementDescriptor.java | 51 private AttributeDescriptor[] mAttributes; field in ElementDescriptor 172 mAttributes != null ? mAttributes.length : 0, in toString() 296 return mAttributes; in getAttributes() 301 mAttributes = attributes; in setAttributes() 457 for (AttributeDescriptor desc : mAttributes) { in definesAttribute()
|