namespaceURI 98 Source/bindings/v8/CustomElementConstructorBuilder.cpp AtomicString namespaceURI = HTMLNames::xhtmlNamespaceURI; namespaceURI 100 Source/bindings/v8/CustomElementConstructorBuilder.cpp namespaceURI = SVGNames::svgNamespaceURI; namespaceURI 116 Source/bindings/v8/CustomElementConstructorBuilder.cpp if (namespaceURI == SVGNames::svgNamespaceURI) { namespaceURI 125 Source/bindings/v8/CustomElementConstructorBuilder.cpp else if (namespaceURI == HTMLNames::xhtmlNamespaceURI) namespaceURI 131 Source/bindings/v8/CustomElementConstructorBuilder.cpp tagName = QualifiedName(nullAtom, localName, namespaceURI); namespaceURI 193 Source/bindings/v8/CustomElementConstructorBuilder.cpp V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementNamespaceURI(isolate), v8String(isolate, descriptor.namespaceURI())); namespaceURI 272 Source/bindings/v8/CustomElementConstructorBuilder.cpp V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, V8HiddenValue::getHiddenValue(isolate, info.Callee(), V8HiddenValue::customElementNamespaceURI(isolate))); namespaceURI 279 Source/bindings/v8/CustomElementConstructorBuilder.cpp RefPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState); namespaceURI 51 Source/bindings/v8/custom/V8XSLTProcessorCustom.cpp V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[0]); namespaceURI 56 Source/bindings/v8/custom/V8XSLTProcessorCustom.cpp impl->setParameter(namespaceURI, localName, value); namespaceURI 64 Source/bindings/v8/custom/V8XSLTProcessorCustom.cpp V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[0]); namespaceURI 68 Source/bindings/v8/custom/V8XSLTProcessorCustom.cpp String result = impl->getParameter(namespaceURI, localName); namespaceURI 80 Source/bindings/v8/custom/V8XSLTProcessorCustom.cpp V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[0]); namespaceURI 84 Source/bindings/v8/custom/V8XSLTProcessorCustom.cpp impl->removeParameter(namespaceURI, localName); namespaceURI 153 Source/core/css/CSSDefaultStyleSheets.cpp if (element->namespaceURI() == MathMLNames::mathmlNamespaceURI namespaceURI 57 Source/core/css/RuleSet.cpp const AtomicString& selectorNamespace = selector.tagQName().namespaceURI(); namespaceURI 161 Source/core/css/SelectorChecker.h const AtomicString& namespaceURI = tagQName.namespaceURI(); namespaceURI 162 Source/core/css/SelectorChecker.h return namespaceURI == starAtom || namespaceURI == element.namespaceURI(); namespaceURI 63 Source/core/dom/Attr.h virtual const AtomicString& namespaceURI() const OVERRIDE { return m_name.namespaceURI(); } namespaceURI 49 Source/core/dom/Attribute.h const AtomicString& namespaceURI() const { return m_name.namespaceURI(); } namespaceURI 79 Source/core/dom/Attribute.h return qualifiedName.prefix() == starAtom || qualifiedName.namespaceURI() == namespaceURI(); namespaceURI 1062 Source/core/dom/ContainerNode.cpp PassRefPtr<HTMLCollection> ContainerNode::getElementsByTagNameNS(const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 1067 Source/core/dom/ContainerNode.cpp if (namespaceURI == starAtom) namespaceURI 1070 Source/core/dom/ContainerNode.cpp return ensureRareData().ensureNodeLists().addCache(*this, namespaceURI.isEmpty() ? nullAtom : namespaceURI, localName); namespaceURI 120 Source/core/dom/ContainerNode.h PassRefPtr<HTMLCollection> getElementsByTagNameNS(const AtomicString& namespaceURI, const AtomicString& localName); namespaceURI 206 Source/core/dom/DOMImplementation.cpp PassRefPtr<XMLDocument> DOMImplementation::createDocument(const AtomicString& namespaceURI, namespaceURI 211 Source/core/dom/DOMImplementation.cpp if (namespaceURI == SVGNames::svgNamespaceURI) { namespaceURI 215 Source/core/dom/DOMImplementation.cpp } else if (namespaceURI == HTMLNames::xhtmlNamespaceURI) { namespaceURI 226 Source/core/dom/DOMImplementation.cpp documentElement = doc->createElementNS(namespaceURI, qualifiedName, exceptionState); namespaceURI 56 Source/core/dom/DOMImplementation.h PassRefPtr<XMLDocument> createDocument(const AtomicString& namespaceURI, const AtomicString& qualifiedName, DocumentType*, ExceptionState&); namespaceURI 744 Source/core/dom/Document.cpp static inline QualifiedName createQualifiedName(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState) namespaceURI 750 Source/core/dom/Document.cpp QualifiedName qName(prefix, localName, namespaceURI); namespaceURI 752 Source/core/dom/Document.cpp exceptionState.throwDOMException(NamespaceError, "The namespace URI provided ('" + namespaceURI + "') is not valid for the qualified name provided ('" + qualifiedName + "')."); namespaceURI 759 Source/core/dom/Document.cpp PassRefPtr<Element> Document::createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState) namespaceURI 761 Source/core/dom/Document.cpp QualifiedName qName(createQualifiedName(namespaceURI, qualifiedName, exceptionState)); namespaceURI 768 Source/core/dom/Document.cpp PassRefPtr<Element> Document::createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, ExceptionState& exceptionState) namespaceURI 770 Source/core/dom/Document.cpp QualifiedName qName(createQualifiedName(namespaceURI, qualifiedName, exceptionState)); namespaceURI 1009 Source/core/dom/Document.cpp if (!qName.prefix().isEmpty() && qName.namespaceURI().isNull()) // createElementNS(null, "html:div") namespaceURI 1011 Source/core/dom/Document.cpp if (qName.prefix() == xmlAtom && qName.namespaceURI() != XMLNames::xmlNamespaceURI) // createElementNS("http://www.example.com", "xml:lang") namespaceURI 1018 Source/core/dom/Document.cpp return qName.namespaceURI() == XMLNSNames::xmlnsNamespaceURI; namespaceURI 1019 Source/core/dom/Document.cpp return qName.namespaceURI() != XMLNSNames::xmlnsNamespaceURI; namespaceURI 1033 Source/core/dom/Document.cpp if (qName.namespaceURI() == xhtmlNamespaceURI) namespaceURI 1035 Source/core/dom/Document.cpp else if (qName.namespaceURI() == SVGNames::svgNamespaceURI) namespaceURI 323 Source/core/dom/Document.h PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&); namespaceURI 981 Source/core/dom/Document.h PassRefPtr<Element> createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& typeExtension, ExceptionState&); namespaceURI 374 Source/core/dom/Element.cpp return hasAttributeNS(name.namespaceURI(), name.localName()); namespaceURI 900 Source/core/dom/Element.cpp const AtomicString& Element::getAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName) const namespaceURI 902 Source/core/dom/Element.cpp return getAttribute(QualifiedName(nullAtom, localName, namespaceURI)); namespaceURI 1127 Source/core/dom/Element.cpp return attribute.name().namespaceURI().isNull() && attribute.name().localName().startsWith("on"); namespaceURI 1206 Source/core/dom/Element.cpp const AtomicString& nodeNamespaceURI = namespaceURI(); namespaceURI 1225 Source/core/dom/Element.cpp if (!prefix().isNull() && namespaceURI() == namespaceToLocate) namespaceURI 2001 Source/core/dom/Element.cpp bool Element::parseAttributeName(QualifiedName& out, const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState) namespaceURI 2008 Source/core/dom/Element.cpp QualifiedName qName(prefix, localName, namespaceURI); namespaceURI 2011 Source/core/dom/Element.cpp exceptionState.throwDOMException(NamespaceError, "'" + namespaceURI + "' is an invalid namespace for attributes."); namespaceURI 2019 Source/core/dom/Element.cpp void Element::setAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& value, ExceptionState& exceptionState) namespaceURI 2022 Source/core/dom/Element.cpp if (!parseAttributeName(parsedName, namespaceURI, qualifiedName, exceptionState)) namespaceURI 2075 Source/core/dom/Element.cpp void Element::removeAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 2077 Source/core/dom/Element.cpp removeAttribute(QualifiedName(nullAtom, localName, namespaceURI)); namespaceURI 2091 Source/core/dom/Element.cpp PassRefPtr<Attr> Element::getAttributeNodeNS(const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 2095 Source/core/dom/Element.cpp QualifiedName qName(nullAtom, localName, namespaceURI); namespaceURI 2111 Source/core/dom/Element.cpp bool Element::hasAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName) const namespaceURI 2115 Source/core/dom/Element.cpp QualifiedName qName(nullAtom, localName, namespaceURI); namespaceURI 146 Source/core/dom/Element.h bool hasAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName) const; namespaceURI 149 Source/core/dom/Element.h const AtomicString& getAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName) const; namespaceURI 152 Source/core/dom/Element.h static bool parseAttributeName(QualifiedName&, const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&); namespaceURI 153 Source/core/dom/Element.h void setAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& value, ExceptionState&); namespaceURI 218 Source/core/dom/Element.h void removeAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName); namespaceURI 223 Source/core/dom/Element.h PassRefPtr<Attr> getAttributeNodeNS(const AtomicString& namespaceURI, const AtomicString& localName); namespaceURI 247 Source/core/dom/Element.h virtual const AtomicString& namespaceURI() const OVERRIDE FINAL { return m_tagName.namespaceURI(); } namespaceURI 249 Source/core/dom/Element.h const AtomicString& locateNamespacePrefix(const AtomicString& namespaceURI) const; namespaceURI 864 Source/core/dom/Element.h ASSERT(tagName.namespaceURI() == m_tagName.namespaceURI()); namespaceURI 118 Source/core/dom/MutationObserverRegistration.cpp if (!attributeName->namespaceURI().isNull()) namespaceURI 103 Source/core/dom/MutationRecord.cpp , m_attributeNamespace(name.namespaceURI()) namespaceURI 53 Source/core/dom/NamedNodeMap.cpp PassRefPtr<Node> NamedNodeMap::getNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName) const namespaceURI 55 Source/core/dom/NamedNodeMap.cpp return m_element->getAttributeNodeNS(namespaceURI, localName); namespaceURI 68 Source/core/dom/NamedNodeMap.cpp PassRefPtr<Node> NamedNodeMap::removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionState& exceptionState) namespaceURI 70 Source/core/dom/NamedNodeMap.cpp size_t index = m_element->hasAttributes() ? m_element->getAttributeItemIndex(QualifiedName(nullAtom, localName, namespaceURI)) : kNotFound; namespaceURI 72 Source/core/dom/NamedNodeMap.cpp exceptionState.throwDOMException(NotFoundError, "No item with name '" + namespaceURI + "::" + localName + "' was found."); namespaceURI 56 Source/core/dom/NamedNodeMap.h PassRefPtr<Node> getNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName) const; namespaceURI 57 Source/core/dom/NamedNodeMap.h PassRefPtr<Node> removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionState&); namespaceURI 1256 Source/core/dom/Node.cpp if (namespaceURI() != other->namespaceURI()) namespaceURI 1298 Source/core/dom/Node.cpp const AtomicString& namespaceURI = namespaceURIMaybeEmpty.isEmpty() ? nullAtom : namespaceURIMaybeEmpty; namespaceURI 1305 Source/core/dom/Node.cpp return elem->namespaceURI() == namespaceURI; namespaceURI 1313 Source/core/dom/Node.cpp return attr.value() == namespaceURI; namespaceURI 1318 Source/core/dom/Node.cpp return parent->isDefaultNamespace(namespaceURI); namespaceURI 1324 Source/core/dom/Node.cpp return de->isDefaultNamespace(namespaceURI); namespaceURI 1332 Source/core/dom/Node.cpp return attr->ownerElement()->isDefaultNamespace(namespaceURI); namespaceURI 1337 Source/core/dom/Node.cpp return parent->isDefaultNamespace(namespaceURI); namespaceURI 1342 Source/core/dom/Node.cpp const AtomicString& Node::lookupPrefix(const AtomicString& namespaceURI) const namespaceURI 1347 Source/core/dom/Node.cpp if (namespaceURI.isEmpty() || namespaceURI.isNull()) namespaceURI 1375 Source/core/dom/Node.cpp return context->locateNamespacePrefix(namespaceURI); namespaceURI 1390 Source/core/dom/Node.cpp if (!elem->namespaceURI().isNull() && elem->prefix() == prefix) namespaceURI 1391 Source/core/dom/Node.cpp return elem->namespaceURI(); namespaceURI 196 Source/core/dom/Node.h virtual const AtomicString& namespaceURI() const; namespaceURI 201 Source/core/dom/Node.h bool isDefaultNamespace(const AtomicString& namespaceURI) const; namespaceURI 202 Source/core/dom/Node.h const AtomicString& lookupPrefix(const AtomicString& namespaceURI) const; namespaceURI 129 Source/core/dom/NodeRareData.h PassRefPtr<TagCollection> addCache(ContainerNode& node, const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 131 Source/core/dom/NodeRareData.h QualifiedName name(nullAtom, localName, namespaceURI); namespaceURI 136 Source/core/dom/NodeRareData.h RefPtr<TagCollection> list = TagCollection::create(node, namespaceURI, localName); namespaceURI 149 Source/core/dom/NodeRareData.h void removeCache(LiveNodeListBase* list, const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 151 Source/core/dom/NodeRareData.h QualifiedName name(nullAtom, localName, namespaceURI); namespaceURI 131 Source/core/dom/PresentationAttributeStyle.cpp if (!attribute.namespaceURI().isNull()) namespaceURI 43 Source/core/dom/QualifiedName.h static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) namespaceURI 45 Source/core/dom/QualifiedName.h return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI)); namespaceURI 59 Source/core/dom/QualifiedName.h QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) namespaceURI 63 Source/core/dom/QualifiedName.h , m_namespace(namespaceURI) namespaceURI 65 Source/core/dom/QualifiedName.h ASSERT(!namespaceURI.isEmpty() || namespaceURI.isNull()); namespaceURI 69 Source/core/dom/QualifiedName.h QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI); namespaceURI 85 Source/core/dom/QualifiedName.h bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); } namespaceURI 87 Source/core/dom/QualifiedName.h bool matchesPossiblyIgnoringCase(const QualifiedName& other, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalPossiblyIgnoringCase(localName(), other.localName(), shouldIgnoreCase) && namespaceURI() == other.namespaceURI()); } namespaceURI 90 Source/core/dom/QualifiedName.h void setPrefix(const AtomicString& prefix) { *this = QualifiedName(prefix, localName(), namespaceURI()); } namespaceURI 94 Source/core/dom/QualifiedName.h const AtomicString& namespaceURI() const { return m_impl->m_namespace; } namespaceURI 32 Source/core/dom/TagCollection.cpp TagCollection::TagCollection(ContainerNode& rootNode, CollectionType type, const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 34 Source/core/dom/TagCollection.cpp , m_namespaceURI(namespaceURI) namespaceURI 54 Source/core/dom/TagCollection.cpp return m_namespaceURI == starAtom || m_namespaceURI == testNode.namespaceURI(); namespaceURI 36 Source/core/dom/TagCollection.h static PassRefPtr<TagCollection> create(ContainerNode& rootNode, const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 38 Source/core/dom/TagCollection.h ASSERT(namespaceURI != starAtom); namespaceURI 39 Source/core/dom/TagCollection.h return adoptRef(new TagCollection(rootNode, TagCollectionType, namespaceURI, localName)); namespaceURI 53 Source/core/dom/TagCollection.h TagCollection(ContainerNode& rootNode, CollectionType, const AtomicString& namespaceURI, const AtomicString& localName); namespaceURI 45 Source/core/dom/custom/CustomElementDescriptor.h CustomElementDescriptor(const AtomicString& type, const AtomicString& namespaceURI, const AtomicString& localName) namespaceURI 47 Source/core/dom/custom/CustomElementDescriptor.h , m_namespaceURI(namespaceURI) namespaceURI 56 Source/core/dom/custom/CustomElementDescriptor.h const AtomicString& namespaceURI() const { return m_namespaceURI; } namespaceURI 44 Source/core/dom/custom/CustomElementDescriptorHash.h return WTF::pairIntHash(AtomicStringHash::hash(descriptor.type()), WTF::pairIntHash(AtomicStringHash::hash(descriptor.namespaceURI()), AtomicStringHash::hash(descriptor.localName()))); namespaceURI 67 Source/core/dom/custom/CustomElementRegistrationContext.cpp if (HTMLNames::xhtmlNamespaceURI == tagName.namespaceURI()) { namespaceURI 69 Source/core/dom/custom/CustomElementRegistrationContext.cpp } else if (SVGNames::svgNamespaceURI == tagName.namespaceURI()) { namespaceURI 95 Source/core/dom/custom/CustomElementRegistrationContext.cpp CustomElementDescriptor descriptor(type, element->namespaceURI(), element->localName()); namespaceURI 83 Source/core/dom/custom/CustomElementRegistry.cpp ASSERT(tagName.namespaceURI() == HTMLNames::xhtmlNamespaceURI || tagName.namespaceURI() == SVGNames::svgNamespaceURI); namespaceURI 102 Source/core/dom/custom/CustomElementRegistry.cpp const CustomElementDescriptor descriptor(type, tagName.namespaceURI(), tagName.localName()); namespaceURI 240 Source/core/editing/MarkupAccumulator.cpp namespaces.set(emptyAtom.impl(), element.namespaceURI().impl()); namespaceURI 267 Source/core/editing/MarkupAccumulator.cpp void MarkupAccumulator::appendNamespace(StringBuilder& result, const AtomicString& prefix, const AtomicString& namespaceURI, Namespaces& namespaces) namespaceURI 269 Source/core/editing/MarkupAccumulator.cpp if (namespaceURI.isEmpty()) namespaceURI 275 Source/core/editing/MarkupAccumulator.cpp if (foundNS != namespaceURI.impl()) { namespaceURI 276 Source/core/editing/MarkupAccumulator.cpp namespaces.set(pre, namespaceURI.impl()); namespaceURI 285 Source/core/editing/MarkupAccumulator.cpp appendAttributeValue(result, namespaceURI, false); namespaceURI 417 Source/core/editing/MarkupAccumulator.cpp appendNamespace(result, element.prefix(), element.namespaceURI(), *namespaces); namespaceURI 432 Source/core/editing/MarkupAccumulator.cpp return attribute.namespaceURI() == XMLNames::xmlNamespaceURI namespaceURI 433 Source/core/editing/MarkupAccumulator.cpp || attribute.namespaceURI() == XLinkNames::xlinkNamespaceURI namespaceURI 434 Source/core/editing/MarkupAccumulator.cpp || attribute.namespaceURI() == XMLNSNames::xmlnsNamespaceURI; namespaceURI 447 Source/core/editing/MarkupAccumulator.cpp if (attribute.namespaceURI() == XLinkNames::xlinkNamespaceURI) { namespaceURI 450 Source/core/editing/MarkupAccumulator.cpp } else if (attribute.namespaceURI() == XMLNames::xmlNamespaceURI) { namespaceURI 453 Source/core/editing/MarkupAccumulator.cpp } else if (attribute.namespaceURI() == XMLNSNames::xmlnsNamespaceURI) { namespaceURI 471 Source/core/editing/MarkupAccumulator.cpp appendNamespace(result, prefixedName.prefix(), prefixedName.namespaceURI(), *namespaces); namespaceURI 89 Source/core/editing/MarkupAccumulator.h void appendNamespace(StringBuilder&, const AtomicString& prefix, const AtomicString& namespaceURI, Namespaces&); namespaceURI 135 Source/core/fetch/FontResource.cpp RefPtr<HTMLCollection> collection = m_externalSVGDocument->getElementsByTagNameNS(SVGNames::fontTag.namespaceURI(), SVGNames::fontTag.localName()); namespaceURI 299 Source/core/html/HTMLDocument.cpp bool isPossibleHTMLAttr = !attributeName.hasPrefix() && (attributeName.namespaceURI() == nullAtom); namespaceURI 205 Source/core/html/HTMLElement.cpp if (!attrName.namespaceURI().isNull()) namespaceURI 652 Source/core/html/parser/HTMLConstructionSite.cpp void HTMLConstructionSite::insertForeignElement(AtomicHTMLToken* token, const AtomicString& namespaceURI) namespaceURI 657 Source/core/html/parser/HTMLConstructionSite.cpp RefPtr<Element> element = createElement(token, namespaceURI); namespaceURI 661 Source/core/html/parser/HTMLConstructionSite.cpp m_openElements.push(HTMLStackItem::create(element.release(), token, namespaceURI)); namespaceURI 721 Source/core/html/parser/HTMLConstructionSite.cpp PassRefPtr<Element> HTMLConstructionSite::createElement(AtomicHTMLToken* token, const AtomicString& namespaceURI) namespaceURI 723 Source/core/html/parser/HTMLConstructionSite.cpp QualifiedName tagName(nullAtom, token->name(), namespaceURI); namespaceURI 756 Source/core/html/parser/HTMLConstructionSite.cpp if (item->namespaceURI() == HTMLNames::xhtmlNamespaceURI) namespaceURI 759 Source/core/html/parser/HTMLConstructionSite.cpp element = createElement(&fakeToken, item->namespaceURI()); namespaceURI 760 Source/core/html/parser/HTMLConstructionSite.cpp return HTMLStackItem::create(element.release(), &fakeToken, item->namespaceURI()); namespaceURI 139 Source/core/html/parser/HTMLConstructionSite.h void insertForeignElement(AtomicHTMLToken*, const AtomicString& namespaceURI); namespaceURI 219 Source/core/html/parser/HTMLConstructionSite.h PassRefPtr<Element> createElement(AtomicHTMLToken*, const AtomicString& namespaceURI); namespaceURI 59 Source/core/html/parser/HTMLElementStack.h const AtomicString& namespaceURI() const { return m_item->namespaceURI(); } namespaceURI 147 Source/core/html/parser/HTMLFormattingElementList.cpp if (newItem->localName() != candidate->localName() || newItem->namespaceURI() != candidate->namespaceURI()) namespaceURI 182 Source/core/html/parser/HTMLFormattingElementList.cpp ASSERT(newItem->localName() == candidate->localName() && newItem->namespaceURI() == candidate->namespaceURI()); namespaceURI 56 Source/core/html/parser/HTMLStackItem.h static PassRefPtr<HTMLStackItem> create(PassRefPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI) namespaceURI 58 Source/core/html/parser/HTMLStackItem.h return adoptRef(new HTMLStackItem(node, token, namespaceURI)); namespaceURI 67 Source/core/html/parser/HTMLStackItem.h const AtomicString& namespaceURI() const { return m_namespaceURI; } namespaceURI 78 Source/core/html/parser/HTMLStackItem.h bool hasTagName(const QualifiedName& name) const { return m_tokenLocalName == name.localName() && m_namespaceURI == name.namespaceURI(); } namespaceURI 96 Source/core/html/parser/HTMLStackItem.h return namespaceURI() == HTMLNames::xhtmlNamespaceURI namespaceURI 220 Source/core/html/parser/HTMLStackItem.h m_namespaceURI = m_node->namespaceURI(); namespaceURI 226 Source/core/html/parser/HTMLStackItem.h HTMLStackItem(PassRefPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI) namespaceURI 230 Source/core/html/parser/HTMLStackItem.h , m_namespaceURI(namespaceURI) namespaceURI 559 Source/core/html/parser/HTMLTreeBuilder.cpp QualifiedName nameWithPrefix(prefix, localName, name->namespaceURI()); namespaceURI 2725 Source/core/html/parser/HTMLTreeBuilder.cpp const AtomicString& currentNamespace = adjustedCurrentNode->namespaceURI(); namespaceURI 2737 Source/core/html/parser/HTMLTreeBuilder.cpp if (adjustedCurrentNode->namespaceURI() == SVGNames::svgNamespaceURI) namespaceURI 120 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp if (record->namespaceURI() == SVGNames::svgNamespaceURI) namespaceURI 122 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp else if (record->namespaceURI() == MathMLNames::mathmlNamespaceURI) namespaceURI 141 Source/core/html/parser/XSSAuditor.cpp const String& attrName = name.namespaceURI() == XLinkNames::xlinkNamespaceURI ? "xlink:" + name.localName().string() : name.localName().string(); namespaceURI 353 Source/core/svg/SVGElement.cpp if (!attrName.namespaceURI().isNull()) namespaceURI 221 Source/core/svg/SVGElement.h QualifiedNameComponents components = { nullAtom.impl(), key.localName().impl(), key.namespaceURI().impl() }; namespaceURI 66 Source/core/svg/SVGFontFaceElement.cpp if (!attrName.namespaceURI().isNull()) namespaceURI 272 Source/core/svg/animation/SVGSMILElement.cpp const AtomicString& namespaceURI = svgElement->lookupNamespaceURI(prefix); namespaceURI 273 Source/core/svg/animation/SVGSMILElement.cpp if (namespaceURI.isEmpty()) namespaceURI 276 Source/core/svg/animation/SVGSMILElement.cpp return QualifiedName(nullAtom, localName, namespaceURI); namespaceURI 127 Source/core/xml/XMLErrors.cpp } else if (documentElement->namespaceURI() == SVGNames::svgNamespaceURI) { namespaceURI 414 Source/core/xml/XPathFunctions.cpp return node ? node->namespaceURI().string() : ""; namespaceURI 417 Source/core/xml/XPathFunctions.cpp return evaluationContext().node->namespaceURI().string(); namespaceURI 196 Source/core/xml/XPathGrammar.y AtomicString namespaceURI; namespaceURI 197 Source/core/xml/XPathGrammar.y if (!parser->expandQName(*$1, localName, namespaceURI)) { namespaceURI 203 Source/core/xml/XPathGrammar.y $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$2); namespaceURI 206 Source/core/xml/XPathGrammar.y $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI)); namespaceURI 225 Source/core/xml/XPathGrammar.y AtomicString namespaceURI; namespaceURI 226 Source/core/xml/XPathGrammar.y if (!parser->expandQName(*$2, localName, namespaceURI)) { namespaceURI 232 Source/core/xml/XPathGrammar.y $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$3); namespaceURI 235 Source/core/xml/XPathGrammar.y $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI)); namespaceURI 449 Source/core/xml/XPathParser.cpp bool Parser::expandQName(const String& qName, AtomicString& localName, AtomicString& namespaceURI) namespaceURI 455 Source/core/xml/XPathParser.cpp namespaceURI = m_resolver->lookupNamespaceURI(qName.left(colon)); namespaceURI 456 Source/core/xml/XPathParser.cpp if (namespaceURI.isNull()) namespaceURI 73 Source/core/xml/XPathParser.h bool expandQName(const String& qName, AtomicString& localName, AtomicString& namespaceURI); namespaceURI 86 Source/core/xml/XPathStep.cpp ASSERT(first->m_nodeTest.namespaceURI().isEmpty()); namespaceURI 91 Source/core/xml/XPathStep.cpp first->m_nodeTest = Step::NodeTest(second->m_nodeTest.kind(), second->m_nodeTest.data(), second->m_nodeTest.namespaceURI()); namespaceURI 174 Source/core/xml/XPathStep.cpp const AtomicString& namespaceURI = nodeTest.namespaceURI(); namespaceURI 180 Source/core/xml/XPathStep.cpp if (node->namespaceURI() == XMLNSNames::xmlnsNamespaceURI) namespaceURI 184 Source/core/xml/XPathStep.cpp return namespaceURI.isEmpty() || node->namespaceURI() == namespaceURI; namespaceURI 186 Source/core/xml/XPathStep.cpp return node->localName() == name && node->namespaceURI() == namespaceURI; namespaceURI 198 Source/core/xml/XPathStep.cpp return namespaceURI.isEmpty() || namespaceURI == node->namespaceURI(); namespaceURI 203 Source/core/xml/XPathStep.cpp return equalIgnoringCase(toElement(node)->localName(), name) && (namespaceURI.isNull() || namespaceURI == node->namespaceURI()); namespaceURI 206 Source/core/xml/XPathStep.cpp return toElement(node)->hasLocalName(name) && namespaceURI == node->namespaceURI() && !namespaceURI.isNull(); namespaceURI 208 Source/core/xml/XPathStep.cpp return toElement(node)->hasLocalName(name) && namespaceURI == node->namespaceURI(); namespaceURI 342 Source/core/xml/XPathStep.cpp RefPtr<Node> n = contextElement->getAttributeNodeNS(m_nodeTest.namespaceURI(), m_nodeTest.data()); namespaceURI 343 Source/core/xml/XPathStep.cpp if (n && n->namespaceURI() != XMLNSNames::xmlnsNamespaceURI) { // In XPath land, namespace nodes are not accessible on the attribute axis. namespaceURI 62 Source/core/xml/XPathStep.h NodeTest(Kind kind, const AtomicString& data, const AtomicString& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) { } namespaceURI 82 Source/core/xml/XPathStep.h const AtomicString& namespaceURI() const { return m_namespaceURI; } namespaceURI 64 Source/core/xml/XSLTProcessor.h void setParameter(const String& namespaceURI, const String& localName, const String& value); namespaceURI 65 Source/core/xml/XSLTProcessor.h String getParameter(const String& namespaceURI, const String& localName) const; namespaceURI 66 Source/core/xml/XSLTProcessor.h void removeParameter(const String& namespaceURI, const String& localName); namespaceURI 812 Source/core/xml/parser/XMLDocumentParser.cpp m_defaultNamespaceURI = parentElement->namespaceURI(); namespaceURI 877 Source/core/xml/parser/XMLDocumentParser.cpp AtomicString namespaceURI = toAtomicString(namespaces[i].uri); namespaceURI 885 Source/core/xml/parser/XMLDocumentParser.cpp prefixedAttributes.append(Attribute(parsedName, namespaceURI)); namespaceURI 78 Source/web/WebElement.cpp return HTMLNames::xhtmlNamespaceURI == element->namespaceURI() && element->localName() == String(tagName).lower();