Home | History | Annotate | Download | only in Api

Lines Matching defs:namespaceUri

385     Adds an attribute with the given \a name in \a namespaceUri with \a value.
391 void QWebElement::setAttributeNS(const QString &namespaceUri, const QString &name, const QString &value)
396 m_element->setAttributeNS(namespaceUri, name, value, exception);
416 Returns the attribute with the given \a name in \a namespaceUri. If the
421 QString QWebElement::attributeNS(const QString &namespaceUri, const QString &name, const QString &defaultValue) const
425 if (m_element->hasAttributeNS(namespaceUri, name))
426 return m_element->getAttributeNS(namespaceUri, name);
446 \a namespaceUri; otherwise returns false.
450 bool QWebElement::hasAttributeNS(const QString &namespaceUri, const QString &name) const
454 return m_element->hasAttributeNS(namespaceUri, name);
471 Removes the attribute with the given \a name, in \a namespaceUri, from this
476 void QWebElement::removeAttributeNS(const QString &namespaceUri, const QString &name)
481 m_element->removeAttributeNS(namespaceUri, name, exception);
498 Return the list of attributes for the namespace given as \a namespaceUri.
502 QStringList QWebElement::attributeNames(const QString& namespaceUri) const
510 const String namespaceUriString(namespaceUri); // convert QString -> String once
514 if (namespaceUriString == attribute->namespaceURI())
598 QString QWebElement::namespaceUri() const
602 return m_element->namespaceURI();