Home | History | Annotate | Download | only in dom

Lines Matching defs:attributeName

666     QualifiedName attributeName(nullAtom, localName, nullAtom);
673 if (isIdAttributeName(old ? old->name() : attributeName))
679 m_attributeMap->addAttribute(createAttribute(attributeName, value));
828 const QualifiedName& attributeName = m_attributeMap->m_attributes[i]->name();
829 if (isEventHandlerAttribute(attributeName)) {
834 if (isAttributeToRemove(attributeName, m_attributeMap->m_attributes[i]->value()))
1848 int Element::getIntegralAttribute(const QualifiedName& attributeName) const
1850 return getAttribute(attributeName).string().toInt();
1853 void Element::setIntegralAttribute(const QualifiedName& attributeName, int value)
1857 setAttribute(attributeName, String::number(value), ec);
1860 unsigned Element::getUnsignedIntegralAttribute(const QualifiedName& attributeName) const
1862 return getAttribute(attributeName).string().toUInt();
1865 void Element::setUnsignedIntegralAttribute(const QualifiedName& attributeName, unsigned value)
1869 setAttribute(attributeName, String::number(value), ec);