Searched refs:namespaceURI (Results 1 - 25 of 61) sorted by relevance

123

/external/webkit/WebCore/bindings/objc/
H A DDOMCustomXPathNSResolver.mm47 NSString *namespaceURI = nil;
50 namespaceURI = [m_customResolver lookupNamespaceURI:prefix];
53 return namespaceURI;
H A DDOMImplementationFront.cpp62 PassRefPtr<Document> DOMImplementationFront::createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType* type, ExceptionCode& ec) argument
64 return reinterpret_cast<DOMImplementation*>(this)->createDocument(namespaceURI, qualifiedName, type, ec);
H A DDOMImplementationFront.h50 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
/external/webkit/WebCore/dom/
H A DTagNodeList.cpp32 TagNodeList::TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches) argument
34 , m_namespaceURI(namespaceURI)
42 if (m_namespaceURI != starAtom && m_namespaceURI != testNode->namespaceURI())
H A DTagNodeList.h35 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches) argument
37 return adoptRef(new TagNodeList(rootNode, namespaceURI, localName, caches));
41 TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches);
H A DNamedNodeMap.idl44 [OldStyleObjC] Node getNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
52 [OldStyleObjC] Node removeNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
H A DQualifiedName.h39 static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument
41 return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI));
50 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument
53 , m_namespace(namespaceURI)
55 ASSERT(!namespaceURI.isEmpty() || namespaceURI.isNull());
59 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
60 QualifiedName(const AtomicString& prefix, const char* localName, const AtomicString& namespaceURI);
72 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); }
79 const AtomicString& namespaceURI() const { return m_impl->m_namespace; } function in class:WebCore::QualifiedName
[all...]
H A DAttr.h71 const AtomicString& namespaceURI() const;
87 virtual const AtomicString& virtualNamespaceURI() const { return namespaceURI(); }
H A DAttribute.h53 const AtomicString& namespaceURI() const { return m_name.namespaceURI(); } function in class:WebCore::Attribute
H A DDOMImplementation.idl36 [OldStyleObjC] Document createDocument(in [ConvertNullToNullString] DOMString namespaceURI,
H A DElement.idl48 [OldStyleObjC] DOMString getAttributeNS(in [ConvertNullToNullString] DOMString namespaceURI,
50 [OldStyleObjC, Custom] void setAttributeNS(in [ConvertNullToNullString] DOMString namespaceURI,
54 [OldStyleObjC] void removeAttributeNS(in [ConvertNullToNullString] DOMString namespaceURI,
57 [OldStyleObjC] NodeList getElementsByTagNameNS(in [ConvertNullToNullString] DOMString namespaceURI,
59 [OldStyleObjC] Attr getAttributeNodeNS(in [ConvertNullToNullString] DOMString namespaceURI,
64 [OldStyleObjC] boolean hasAttributeNS(in [ConvertNullToNullString] DOMString namespaceURI,
H A DElement.h110 bool hasAttributeNS(const String& namespaceURI, const String& localName) const;
113 const AtomicString& getAttributeNS(const String& namespaceURI, const String& localName) const;
116 void setAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& value, ExceptionCode&, FragmentScriptingPermission = FragmentScriptingAllowed);
146 void removeAttributeNS(const String& namespaceURI, const String& localName, ExceptionCode&);
149 PassRefPtr<Attr> getAttributeNodeNS(const String& namespaceURI, const String& localName);
166 const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); } function in class:WebCore::Element
311 virtual const AtomicString& virtualNamespaceURI() const { return namespaceURI(); }
H A DAttr.cpp89 const AtomicString& Attr::namespaceURI() const function in class:WebCore::Attr
91 return m_attribute->namespaceURI();
106 if ((prefix == xmlnsAtom && namespaceURI() != XMLNSNames::xmlnsNamespaceURI)
H A DNode.idl86 readonly attribute [ConvertNullStringTo=Null] DOMString namespaceURI;
103 [ConvertNullStringTo=Null] DOMString lookupPrefix(in [ConvertNullToNullString] DOMString namespaceURI);
104 boolean isDefaultNamespace(in [ConvertNullToNullString] DOMString namespaceURI);
/external/webkit/WebCore/xml/
H A DXSLTProcessor.idl44 [Custom] void setParameter(in DOMString namespaceURI, in DOMString localName, in DOMString value);
45 [Custom, ConvertNullStringTo=Undefined] DOMString getParameter(in DOMString namespaceURI, in DOMString localName);
46 [Custom] void removeParameter(in DOMString namespaceURI, in DOMString localName);
H A DXPathStep.cpp83 ASSERT(first->m_nodeTest.namespaceURI().isEmpty());
88 first->m_nodeTest = Step::NodeTest(second->m_nodeTest.kind(), second->m_nodeTest.data(), second->m_nodeTest.namespaceURI());
171 const AtomicString& namespaceURI = nodeTest.namespaceURI(); local
177 if (node->namespaceURI() == XMLNSNames::xmlnsNamespaceURI)
181 return namespaceURI.isEmpty() || node->namespaceURI() == namespaceURI;
183 return node->localName() == name && node->namespaceURI() == namespaceURI;
[all...]
H A DXPathStep.h60 NodeTest(Kind kind, const String& data, const String& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) {} argument
64 const AtomicString& namespaceURI() const { return m_namespaceURI; } function in class:WebCore::XPath::Step::NodeTest
H A DXSLTProcessor.h57 void setParameter(const String& namespaceURI, const String& localName, const String& value);
58 String getParameter(const String& namespaceURI, const String& localName) const;
59 void removeParameter(const String& namespaceURI, const String& localName);
H A DXPathNamespace.cpp69 const AtomicString& XPathNamespace::namespaceURI() const function in class:WebCore::XPathNamespace
H A DXPathNamespace.h49 virtual const AtomicString& namespaceURI() const;
H A DXPathGrammar.y198 String namespaceURI;
199 if (!PARSER->expandQName(*$1, localName, namespaceURI)) {
205 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$2);
208 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
227 String namespaceURI;
228 if (!PARSER->expandQName(*$2, localName, namespaceURI)) {
234 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$3);
237 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
/external/webkit/WebCore/bindings/js/
H A DJSXSLTProcessorCustom.cpp92 String namespaceURI = args.at(0).toString(exec);
95 impl()->setParameter(namespaceURI, localName, value);
103 String namespaceURI = args.at(0).toString(exec);
105 String value = impl()->getParameter(namespaceURI, localName);
113 String namespaceURI = args.at(0).toString(exec);
115 impl()->removeParameter(namespaceURI, localName);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8XSLTProcessorCustom.cpp114 String namespaceURI = toWebCoreString(args[0]); local
117 imp->setParameter(namespaceURI, localName, value);
131 String namespaceURI = toWebCoreString(args[0]); local
133 String result = imp->getParameter(namespaceURI, localName);
148 String namespaceURI = toWebCoreString(args[0]); local
150 imp->removeParameter(namespaceURI, localName);
/external/webkit/WebKit/win/
H A DDOMHTMLClasses.h277 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLDocument
278 /* [retval][out] */ BSTR *result) { return DOMDocument::namespaceURI(result); }
358 /* [in] */ BSTR namespaceURI,
360 /* [retval][out] */ IDOMElement **result) { return DOMDocument::createElementNS(namespaceURI, qualifiedName, result); }
363 /* [in] */ BSTR namespaceURI,
365 /* [retval][out] */ IDOMAttr **result) { return DOMDocument::createAttributeNS(namespaceURI, qualifiedName, result); }
368 /* [in] */ BSTR namespaceURI,
370 /* [retval][out] */ IDOMNodeList **result) { return DOMDocument::getElementsByTagNameNS(namespaceURI, localName, result); }
551 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLElement
552 /* [retval][out] */ BSTR *result) { return DOMElement::namespaceURI(resul
357 createElementNS( BSTR namespaceURI, BSTR qualifiedName, IDOMElement **result) argument
362 createAttributeNS( BSTR namespaceURI, BSTR qualifiedName, IDOMAttr **result) argument
367 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
611 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
616 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
621 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
625 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
634 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
643 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
810 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLFormElement
870 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
875 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
880 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
884 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
893 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
902 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1115 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLSelectElement
1175 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1180 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1185 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1189 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1198 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1207 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1439 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLOptionElement
1499 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1504 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1509 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1513 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1522 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1531 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1737 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLInputElement
1797 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1802 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1807 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1811 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1820 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1829 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
2147 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLTextAreaElement
2207 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
2212 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
2217 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
2221 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
2230 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
2239 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
[all...]
/external/webkit/WebKit/win/Interfaces/
H A DDOMCore.idl81 - (DOMDocument *)createDocument:(NSString *)namespaceURI :(NSString *)qualifiedName :(DOMDocumentType *)doctype;
83 HRESULT createDocument([in] BSTR namespaceURI, [in] BSTR qualifiedName, [in] IDOMDocumentType* doctype, [out, retval] IDOMDocument** result);
198 - (NSString *)namespaceURI;
200 HRESULT namespaceURI([out, retval] BSTR* result);
302 - (DOMNode *)getNamedItemNS:(NSString *)namespaceURI :(NSString *)localName;
304 HRESULT getNamedItemNS([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMNode** result);
312 - (DOMNode *)removeNamedItemNS:(NSString *)namespaceURI :(NSString *)localName;
314 HRESULT removeNamedItemNS([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMNode** result);
394 - (DOMElement *)createElementNS:(NSString *)namespaceURI :(NSString *)qualifiedName;
396 HRESULT createElementNS([in] BSTR namespaceURI, [i
[all...]

Completed in 163 milliseconds

123