Home
last modified time | relevance | path

Searched refs:attributeMap (Results 1 – 6 of 6) sorted by relevance

/sdk/attribute_stats/src/
DAnalyzer.java247 Map<String, Usage> attributeMap = mFrequencies.get(tag); in countAttributes() local
248 if (attributeMap == null) { in countAttributes()
249 attributeMap = new HashMap<String, Usage>(70); in countAttributes()
250 mFrequencies.put(tag, attributeMap); in countAttributes()
277 Usage usage = attributeMap.get(name); in countAttributes()
283 attributeMap.put(name, usage); in countAttributes()
289 Map<String, Usage> attributeMap = mLayoutAttributeFrequencies.get(parentTag); in countLayoutAttributes() local
290 if (attributeMap == null) { in countLayoutAttributes()
291 attributeMap = new HashMap<String, Usage>(70); in countLayoutAttributes()
292 mLayoutAttributeFrequencies.put(parentTag, attributeMap); in countLayoutAttributes()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiElementNode.java1853 HashMap<AttributeDescriptor, UiAttributeNode> attributeMap = getInternalUiAttributes(); in getAttributeValue() local
1855 for (Entry<AttributeDescriptor, UiAttributeNode> entry : attributeMap.entrySet()) { in getAttributeValue()
1884 HashMap<AttributeDescriptor, UiAttributeNode> attributeMap = getInternalUiAttributes(); in getPropertyDescriptors() local
1885 Set<AttributeDescriptor> keys = attributeMap.keySet(); in getPropertyDescriptors()
1915 HashMap<AttributeDescriptor, UiAttributeNode> attributeMap = getInternalUiAttributes(); in getPropertyValue() local
1917 UiAttributeNode attribute = attributeMap.get(id); in getPropertyValue()
1939 HashMap<AttributeDescriptor, UiAttributeNode> attributeMap = getInternalUiAttributes(); in isPropertySet() local
1941 UiAttributeNode attribute = attributeMap.get(id); in isPropertySet()
1965 HashMap<AttributeDescriptor, UiAttributeNode> attributeMap = getInternalUiAttributes(); in resetPropertyValue() local
1967 UiAttributeNode attribute = attributeMap.get(id); in resetPropertyValue()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
DAttributeInfoTest.java306 Map<String, AttributeInfo> attributeMap = parser.getAttributeMap(); in testIsValid() local
307 assertNotNull(attributeMap); in testIsValid()
308 assertNotNull(attributeMap.get("layout_width")); in testIsValid()
311 checkDir(new File(git, "packages" + File.separator + "apps"), false, attributeMap, seen); in testIsValid()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
DAndroidTargetData.java107 public void setAttributeMap(@NonNull Map<String, AttributeInfo> attributeMap) { in setAttributeMap() argument
108 mAttributeMap = attributeMap; in setAttributeMap()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DExtractStyleRefactoring.java258 NamedNodeMap attributeMap = element.getAttributes(); in getAvailableAttributes() local
259 for (int i = 0, n = attributeMap.getLength(); i < n; i++) { in getAvailableAttributes()
260 Attr attribute = (Attr) attributeMap.item(i); in getAvailableAttributes()
DChangeLayoutRefactoring.java566 NamedNodeMap attributeMap = layout.getAttributes(); in removeUndefinedAttrs() local
567 for (int i = 0, n = attributeMap.getLength(); i < n; i++) { in removeUndefinedAttrs()
568 Node attributeNode = attributeMap.item(i); in removeUndefinedAttrs()