Searched defs:namespaceUri (Results 1 - 1 of 1) sorted by relevance

/external/webkit/WebKit/qt/Api/
H A Dqwebelement.cpp348 Adds an attribute with the given \a name in \a namespaceUri with \a value.
354 void QWebElement::setAttributeNS(const QString &namespaceUri, const QString &name, const QString &value) argument
359 m_element->setAttributeNS(namespaceUri, name, value, exception);
379 Returns the attribute with the given \a name in \a namespaceUri. If the
384 QString QWebElement::attributeNS(const QString &namespaceUri, const QString &name, const QString &defaultValue) const argument
388 if (m_element->hasAttributeNS(namespaceUri, name))
389 return m_element->getAttributeNS(namespaceUri, name);
409 \a namespaceUri; otherwise returns false.
413 bool QWebElement::hasAttributeNS(const QString &namespaceUri, const QString &name) const argument
417 return m_element->hasAttributeNS(namespaceUri, nam
439 removeAttributeNS(const QString &namespaceUri, const QString &name) argument
561 QString QWebElement::namespaceUri() const function in class:QWebElement
[all...]

Completed in 13 milliseconds