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

1234

/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMCustomXPathNSResolver.mm45 NSString *namespaceURI = nil;
48 namespaceURI = [m_customResolver lookupNamespaceURI:prefix];
51 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.h49 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DAttribute.h49 const AtomicString& namespaceURI() const { return m_name.namespaceURI(); } function in class:WebCore::Attribute
79 return qualifiedName.prefix() == starAtom || qualifiedName.namespaceURI() == namespaceURI();
H A DTagNodeList.cpp33 TagNodeList::TagNodeList(PassRefPtr<Node> rootNode, CollectionType type, const AtomicString& namespaceURI, const AtomicString& localName) argument
35 , m_namespaceURI(namespaceURI)
55 return m_namespaceURI == starAtom || m_namespaceURI == testNode->namespaceURI();
H A DQualifiedName.h42 static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument
44 return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI));
58 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument
62 , m_namespace(namespaceURI)
64 ASSERT(!namespaceURI.isEmpty() || namespaceURI.isNull());
68 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
82 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); }
85 void setPrefix(const AtomicString& prefix) { *this = QualifiedName(prefix, localName(), namespaceURI()); }
89 const AtomicString& namespaceURI() const { return m_impl->m_namespace; } function in class:WebCore::QualifiedName
[all...]
H A DNamedNodeMap.cpp58 PassRefPtr<Node> NamedNodeMap::getNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName) const argument
60 return m_element->getAttributeNodeNS(namespaceURI, localName);
73 PassRefPtr<Node> NamedNodeMap::removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionCode& ec) argument
75 unsigned index = m_element->hasAttributes() ? m_element->getAttributeItemIndex(QualifiedName(nullAtom, localName, namespaceURI)) : notFound;
H A DNamedNodeMap.idl39 [ObjCLegacyUnnamedParameters] Node getNamedItemNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
44 [ObjCLegacyUnnamedParameters, RaisesException] Node removeNamedItemNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
H A DTagNodeList.h36 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName) argument
38 ASSERT(namespaceURI != starAtom);
39 return adoptRef(new TagNodeList(rootNode, TagNodeListType, namespaceURI, localName));
51 TagNodeList(PassRefPtr<Node> rootNode, CollectionType, const AtomicString& namespaceURI, const AtomicString& localName);
H A DNamedNodeMap.h57 PassRefPtr<Node> getNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName) const;
58 PassRefPtr<Node> removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionCode&);
H A DAttr.h77 virtual const AtomicString& namespaceURI() const OVERRIDE { return m_name.namespaceURI(); }
H A DCustomElementConstructor.cpp82 if (HTMLNames::xhtmlNamespaceURI == m_typeName.namespaceURI())
85 if (SVGNames::svgNamespaceURI == m_typeName.namespaceURI())
H A DShadowRoot.idl45 NodeList getElementsByTagNameNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
H A DElement.idl47 [ObjCLegacyUnnamedParameters] DOMString getAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
49 [ObjCLegacyUnnamedParameters, RaisesException] void setAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
52 [ObjCLegacyUnnamedParameters] void removeAttributeNS([TreatNullAs=NullString] DOMString namespaceURI,
54 [ObjCLegacyUnnamedParameters] NodeList getElementsByTagNameNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
56 [ObjCLegacyUnnamedParameters] Attr getAttributeNodeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
60 [ObjCLegacyUnnamedParameters] boolean hasAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
H A DNode.idl81 [TreatReturnedNullStringAs=Null] readonly attribute DOMString namespaceURI;
100 [TreatReturnedNullStringAs=Null] DOMString lookupPrefix([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI);
101 boolean isDefaultNamespace([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSXSLTProcessorCustom.cpp53 String namespaceURI = exec->argument(0).toString(exec)->value(exec);
56 impl()->setParameter(namespaceURI, localName, value);
64 String namespaceURI = exec->argument(0).toString(exec)->value(exec);
66 String value = impl()->getParameter(namespaceURI, localName);
74 String namespaceURI = exec->argument(0).toString(exec)->value(exec);
76 impl()->removeParameter(namespaceURI, localName);
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXSLTProcessor.idl43 [Custom] void setParameter(DOMString namespaceURI, DOMString localName, DOMString value);
44 [Custom, TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString namespaceURI, DOMString localName);
45 [Custom] void removeParameter(DOMString namespaceURI, DOMString localName);
H A DXPathStep.cpp81 ASSERT(first->m_nodeTest.namespaceURI().isEmpty());
86 first->m_nodeTest = Step::NodeTest(second->m_nodeTest.kind(), second->m_nodeTest.data(), second->m_nodeTest.namespaceURI());
169 const AtomicString& namespaceURI = nodeTest.namespaceURI(); local
175 if (node->namespaceURI() == XMLNSNames::xmlnsNamespaceURI)
179 return namespaceURI.isEmpty() || node->namespaceURI() == namespaceURI;
181 return node->localName() == name && node->namespaceURI() == namespaceURI;
[all...]
H A DXPathStep.h62 NodeTest(Kind kind, const String& data, const String& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) { } argument
66 const AtomicString& namespaceURI() const { return m_namespaceURI; } function in class:WebCore::XPath::Step::NodeTest
H A DXSLTProcessor.h62 void setParameter(const String& namespaceURI, const String& localName, const String& value);
63 String getParameter(const String& namespaceURI, const String& localName) const;
64 void removeParameter(const String& namespaceURI, const String& localName);
H A DXPathGrammar.y196 String namespaceURI;
197 if (!parser->expandQName(*$1, localName, namespaceURI)) {
203 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$2);
206 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
225 String namespaceURI;
226 if (!parser->expandQName(*$2, localName, namespaceURI)) {
232 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$3);
235 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DSelectorChecker.h127 const AtomicString& namespaceURI = tagQName.namespaceURI(); local
128 return namespaceURI == starAtom || namespaceURI == element->namespaceURI();
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLStackItem.h57 static PassRefPtr<HTMLStackItem> create(PassRefPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI)
59 return adoptRef(new HTMLStackItem(node, token, namespaceURI));
68 const AtomicString& namespaceURI() const { return m_namespaceURI; } function in class:WebCore::HTMLStackItem
79 bool hasTagName(const QualifiedName& name) const { return m_tokenLocalName == name.localName() && m_namespaceURI == name.namespaceURI(); }
97 return namespaceURI() == HTMLNames::xhtmlNamespaceURI
224 m_namespaceURI = m_node->namespaceURI();
230 HTMLStackItem(PassRefPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI)
234 , m_namespaceURI(namespaceURI)
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDOMHTMLClasses.h275 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLDocument
276 /* [retval][out] */ BSTR *result) { return DOMDocument::namespaceURI(result); }
356 /* [in] */ BSTR namespaceURI,
358 /* [retval][out] */ IDOMElement **result) { return DOMDocument::createElementNS(namespaceURI, qualifiedName, result); }
361 /* [in] */ BSTR namespaceURI,
363 /* [retval][out] */ IDOMAttr **result) { return DOMDocument::createAttributeNS(namespaceURI, qualifiedName, result); }
366 /* [in] */ BSTR namespaceURI,
368 /* [retval][out] */ IDOMNodeList **result) { return DOMDocument::getElementsByTagNameNS(namespaceURI, localName, result); }
549 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLElement
550 /* [retval][out] */ BSTR *result) { return DOMElement::namespaceURI(resul
355 createElementNS( BSTR namespaceURI, BSTR qualifiedName, IDOMElement **result) argument
360 createAttributeNS( BSTR namespaceURI, BSTR qualifiedName, IDOMAttr **result) argument
365 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
609 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
614 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
619 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
623 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
632 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
641 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
808 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLFormElement
868 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
873 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
878 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
882 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
891 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
900 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1113 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLSelectElement
1173 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1178 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1183 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1187 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1196 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1205 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1437 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLOptionElement
1497 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1502 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1507 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1511 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1520 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1529 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1735 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLInputElement
1795 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1800 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1805 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1809 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1818 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1827 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
2145 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLTextAreaElement
2205 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
2210 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
2215 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
2219 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
2228 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
2237 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
2470 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLIFrameElement
2530 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
2535 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
2540 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
2544 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
2553 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
2562 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
[all...]
/macosx-10.9.5/WebKit-7537.78.2/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 209 milliseconds

1234