Searched refs:attrMap (Results 1 - 5 of 5) sorted by relevance

/external/webkit/WebKit/chromium/src/
H A DWebPageSerializerImpl.cpp311 const NamedNodeMap *attrMap = element->attributes(true); local
312 if (attrMap) {
313 unsigned numAttrs = attrMap->length();
317 const Attribute *attribute = attrMap->attributeItem(i);
/external/webkit/WebCore/inspector/
H A DInspectorDOMAgent.cpp498 const NamedNodeMap* attrMap = element->attributes(true); local
499 if (!attrMap)
501 unsigned numAttrs = attrMap->length();
505 const Attribute *attribute = attrMap->attributeItem(i);
/external/webkit/WebKitTools/Scripts/webkitpy/
H A DBeautifulSoup.py562 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
1680 not parent.attrMap.has_key(tag.name)):
/external/webkit/WebCore/dom/
H A DElement.cpp1072 NamedNodeMap* attrMap = attributes(true); local
1074 if (attrMap) {
1075 unsigned numAttrs = attrMap->length();
1079 Attribute *attribute = attrMap->attributeItem(i);
H A DNode.cpp174 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);

Completed in 706 milliseconds