Searched refs:namespaceUri (Results 1 – 7 of 7) sorted by relevance
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebelement.h | 83 void setAttributeNS(const QString& namespaceUri, const QString& name, const QString& value); 85 …QString attributeNS(const QString& namespaceUri, const QString& name, const QString& defaultValue … 87 bool hasAttributeNS(const QString& namespaceUri, const QString& name) const; 89 void removeAttributeNS(const QString& namespaceUri, const QString& name); 91 QStringList attributeNames(const QString& namespaceUri = QString()) const; 107 QString namespaceUri() const;
|
D | qwebelement.cpp | 391 void QWebElement::setAttributeNS(const QString &namespaceUri, const QString &name, const QString &v… in setAttributeNS() argument 396 m_element->setAttributeNS(namespaceUri, name, value, exception); in setAttributeNS() 421 QString QWebElement::attributeNS(const QString &namespaceUri, const QString &name, const QString &d… in attributeNS() argument 425 if (m_element->hasAttributeNS(namespaceUri, name)) in attributeNS() 426 return m_element->getAttributeNS(namespaceUri, name); in attributeNS() 450 bool QWebElement::hasAttributeNS(const QString &namespaceUri, const QString &name) const in hasAttributeNS() argument 454 return m_element->hasAttributeNS(namespaceUri, name); in hasAttributeNS() 476 void QWebElement::removeAttributeNS(const QString &namespaceUri, const QString &name) in removeAttributeNS() argument 481 m_element->removeAttributeNS(namespaceUri, name, exception); in removeAttributeNS() 502 QStringList QWebElement::attributeNames(const QString& namespaceUri) const in attributeNames() [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
D | ExtensionHandler.java | 76 protected ExtensionHandler(String namespaceUri, String scriptLang) in ExtensionHandler() argument 78 m_namespaceUri = namespaceUri; in ExtensionHandler()
|
/external/webkit/Source/WebCore/dom/ |
D | XMLDocumentParserQt.cpp | 308 String attrURI = attr.namespaceUri(); in attributesStartElementNsHandler() 346 String namespaceURI = decl.namespaceUri(); in handleElementNamespaces() 362 … String attrURI = attr.namespaceUri().isEmpty() ? String() : String(attr.namespaceUri()); in handleElementAttributes() 486 String uri = m_stream.namespaceUri(); in parseStartElement()
|
/external/webkit/Source/WebKit/qt/tests/qwebelement/ |
D | tst_qwebelement.cpp | 267 QCOMPARE(body.namespaceUri(), QLatin1String("http://www.w3.org/1999/xhtml")); in namespaceURI() 273 QCOMPARE(svg.namespaceUri(), QLatin1String("http://www.w3.org/2000/svg")); in namespaceURI()
|
/external/webkit/Source/WebKit/qt/symbian/bwins/ |
D | QtWebKitu.def | 327 …?namespaceUri@QWebElement@@QBE?AVQString@@XZ @ 326 NONAME ; class QString QWebElement::namespaceUr…
|
/external/webkit/Source/WebKit/qt/ |
D | ChangeLog-2011-02-16 | 17653 * Fixed casing of namespaceUri to follow QXmlStreamReader 17670 (QWebElement::namespaceUri):
|