HomeSort by relevance Sort by last modified time
    Searched refs:attrMap (Results 1 - 8 of 8) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/
AttrsXmlParserTest.java 90 Map<String, Map<String, Integer>> attrMap = mParser.getEnumFlagValues();
91 assertTrue(attrMap.containsKey("orientation"));
93 Map<String, Integer> valueMap = attrMap.get("orientation");
  /libcore/luni/src/main/java/java/awt/font/
TextAttribute.java 46 /** The Constant attrMap. */
47 private static final Map<String, TextAttribute> attrMap = new HashMap<String, TextAttribute>();
56 attrMap.put(name, this);
68 TextAttribute result = attrMap.get(this.getName());
  /external/webkit/WebKit/chromium/src/
WebPageSerializerImpl.cpp 311 const NamedNodeMap *attrMap = element->attributes(true);
312 if (attrMap) {
313 unsigned numAttrs = attrMap->length();
317 const Attribute *attribute = attrMap->attributeItem(i);
  /external/webkit/WebCore/inspector/
InspectorDOMAgent.cpp 498 const NamedNodeMap* attrMap = element->attributes(true);
499 if (!attrMap)
501 unsigned numAttrs = attrMap->length();
505 const Attribute *attribute = attrMap->attributeItem(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 562 self.attrMap[key] = value
580 if self.attrMap.has_key(key):
581 del self.attrMap[key]
815 if not getattr(self, 'attrMap'):
816 self.attrMap = {}
818 self.attrMap[key] = value
819 return self.attrMap
    [all...]
  /external/webkit/WebCore/dom/
Element.cpp     [all...]
Node.cpp 174 if (NamedNodeMap* attrMap = element->attributes(true)) {
175 attributes += attrMap->length();
177 if (attrMap->isMappedAttributeMap())
179 for (unsigned i = 0; i < attrMap->length(); ++i) {
180 Attribute* attr = attrMap->attributeItem(i);
    [all...]

Completed in 7343 milliseconds