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

1234

/macosx-10.10/WebCore-7600.1.25/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.10/WebCore-7600.1.25/bindings/js/
H A DJSXSLTProcessorCustom.cpp53 String namespaceURI = exec->uncheckedArgument(0).toString(exec)->value(exec);
56 impl().setParameter(namespaceURI, localName, value);
64 String namespaceURI = exec->uncheckedArgument(0).toString(exec)->value(exec);
66 String value = impl().getParameter(namespaceURI, localName);
74 String namespaceURI = exec->uncheckedArgument(0).toString(exec)->value(exec);
76 impl().removeParameter(namespaceURI, localName);
/macosx-10.10/WebCore-7600.1.25/dom/
H A DAttribute.h50 const AtomicString& namespaceURI() const { return m_name.namespaceURI(); } function in class:WebCore::Attribute
57 bool matches(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) const;
82 return filterPrefix == starAtom || filterNamespaceURI == name.namespaceURI();
85 inline bool Attribute::matches(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) const
87 return nameMatchesFilter(m_name, prefix, localName, namespaceURI);
H A DTagNodeList.cpp31 TagNodeList::TagNodeList(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName) argument
33 , m_namespaceURI(namespaceURI)
H A DTagNodeList.h36 static PassRef<TagNodeList> create(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName) argument
38 ASSERT(namespaceURI != starAtom);
39 return adoptRef(*new TagNodeList(rootNode, namespaceURI, localName));
53 TagNodeList(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName);
65 return m_namespaceURI == starAtom || m_namespaceURI == element->namespaceURI();
H A DQualifiedName.h42 static PassRef<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument
44 return adoptRef(*new QualifiedNameImpl(prefix, localName, namespaceURI));
63 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument
67 , m_namespace(namespaceURI)
69 ASSERT(!namespaceURI.isEmpty() || namespaceURI.isNull());
73 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
86 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); }
88 bool matchesIgnoringCaseForLocalName(const QualifiedName& other, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalPossiblyIgnoringCase(localName(), other.localName(), shouldIgnoreCase) && namespaceURI()
95 const AtomicString& namespaceURI() const { return m_impl->m_namespace; } function in class:WebCore::QualifiedName
[all...]
H A DNamedNodeMap.cpp56 PassRefPtr<Node> NamedNodeMap::getNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName) const argument
58 return m_element.getAttributeNodeNS(namespaceURI, localName);
71 PassRefPtr<Node> NamedNodeMap::removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionCode& ec) argument
73 unsigned index = m_element.hasAttributes() ? m_element.findAttributeIndexByName(QualifiedName(nullAtom, localName, namespaceURI)) : ElementData::attributeNotFound;
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 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.h65 virtual const AtomicString& namespaceURI() const override { return m_name.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.idl79 [TreatReturnedNullStringAs=Null] readonly attribute DOMString namespaceURI;
98 [TreatReturnedNullStringAs=Null] DOMString lookupPrefix([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI);
99 boolean isDefaultNamespace([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI);
H A DDOMImplementation.idl36 [ObjCLegacyUnnamedParameters, RaisesException] Document createDocument([TreatNullAs=NullString, Default=Undefined] optional DOMString namespaceURI,
/macosx-10.10/WebCore-7600.1.25/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.cpp184 const AtomicString& namespaceURI = nodeTest.m_namespaceURI; local
190 if (node.namespaceURI() == XMLNSNames::xmlnsNamespaceURI)
194 return namespaceURI.isEmpty() || node.namespaceURI() == namespaceURI;
196 return node.localName() == name && node.namespaceURI() == namespaceURI;
208 return namespaceURI.isEmpty() || namespaceURI == node.namespaceURI();
[all...]
H A DXSLTProcessor.h60 void setParameter(const String& namespaceURI, const String& localName, const String& value);
61 String getParameter(const String& namespaceURI, const String& localName) const;
62 void removeParameter(const String& namespaceURI, const String& localName);
H A DXPathGrammar.y180 String namespaceURI;
181 if (!parser.expandQualifiedName(nametest, localName, namespaceURI)) {
187 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), WTF::move(*predicateList));
189 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
209 String namespaceURI;
210 if (!parser.expandQualifiedName(nametest, localName, namespaceURI)) {
216 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), WTF::move(*predicateList));
218 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
H A DXPathStep.h60 NodeTest(Kind kind, const AtomicString& data, const AtomicString& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) { } argument
/macosx-10.10/WebCore-7600.1.25/css/
H A DSelectorChecker.h126 const AtomicString& namespaceURI = tagQName.namespaceURI(); local
127 return namespaceURI == starAtom || namespaceURI == element->namespaceURI();
136 if (attribute.matches(selectorAttributeName.prefix(), localName, selectorAttributeName.namespaceURI()) && (!value || attribute.value().impl() == value))
/macosx-10.10/WebCore-7600.1.25/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.10/WebKit-7600.1.25/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.10/WebCore-7600.1.25/editing/
H A DMarkupAccumulator.cpp293 if (attribute.name().localName() == xmlnsAtom && (attribute.namespaceURI().isEmpty() || attribute.namespaceURI() == XMLNSNames::xmlnsNamespaceURI)) {
308 void MarkupAccumulator::appendNamespace(StringBuilder& result, const AtomicString& prefix, const AtomicString& namespaceURI, Namespaces& namespaces, bool allowEmptyDefaultNS) argument
311 if (namespaceURI.isEmpty()) {
324 if (foundNS != namespaceURI.impl()) {
325 namespaces.set(pre, namespaceURI.impl());
328 namespaces.set(namespaceURI.impl(), pre);
330 if (namespaceURI.impl() == XMLNames::xmlNamespaceURI.impl())
341 appendAttributeValue(result, namespaceURI, false);
461 if (element.namespaceURI()
[all...]
/macosx-10.10/WebKit-7600.1.25/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 535 milliseconds

1234