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

  /external/webkit/Source/WebCore/dom/
Element.cpp 116 if (m_attributeMap)
117 m_attributeMap->detachFromElement();
221 if (m_attributeMap) {
223 m_attributeMap->removeNamedItem(name, ec);
640 if (m_attributeMap) {
641 if (Attribute* attribute = m_attributeMap->getAttributeItem(name, ignoreCase))
677 m_attributeMap->removeAttribute(old->name());
679 m_attributeMap->addAttribute(createAttribute(attributeName, value));
710 m_attributeMap->removeAttribute(name);
712 m_attributeMap->addAttribute(createAttribute(name, value))
    [all...]
Element.h 223 NamedNodeMap* attributeMap() const { return m_attributeMap.get(); }
418 mutable RefPtr<NamedNodeMap> m_attributeMap;
472 if (!readonly && !m_attributeMap)
474 return m_attributeMap.get();
494 return m_attributeMap && m_attributeMap->getAttributeItem(name);
499 if (m_attributeMap) {
500 if (Attribute* attribute = m_attributeMap->getAttributeItem(name))
509 return m_attributeMap->idForStyleResolution();

Completed in 65 milliseconds