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

/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionHandler.java73 * @param namespaceUri the extension namespace URI that I'm implementing
76 protected ExtensionHandler(String namespaceUri, String scriptLang) argument
78 m_namespaceUri = namespaceUri;
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp385 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) argument
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 argument
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 argument
454 return m_element->hasAttributeNS(namespaceUri, nam
476 removeAttributeNS(const QString &namespaceUri, const QString &name) argument
598 QString QWebElement::namespaceUri() const function in class:QWebElement
[all...]

Completed in 163 milliseconds