HomeSort by relevance Sort by last modified time
    Searched defs:namespaceURI (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Attribute.h 49 const AtomicString& namespaceURI() const { return m_name.namespaceURI(); }
79 return qualifiedName.prefix() == starAtom || qualifiedName.namespaceURI() == namespaceURI();
QualifiedName.h 49 static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI, bool isStatic)
51 return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI, isStatic));
82 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI, bool isStatic)
87 , m_namespace(namespaceURI)
90 ASSERT(!namespaceURI.isEmpty() || namespaceURI.isNull());
94 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
107 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); }
109 bool matchesPossiblyIgnoringCase(const QualifiedName& other, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalPossiblyIgnoringCase(localName(), other.localName(), shouldIgnoreCase) && namespaceURI() == other.namespaceURI());
    [all...]
Node.cpp 536 const AtomicString& Node::namespaceURI() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementDescriptor.h 47 CustomElementDescriptor(const AtomicString& type, const AtomicString& namespaceURI, const AtomicString& localName)
49 , m_namespaceURI(namespaceURI)
58 const AtomicString& namespaceURI() const { return m_namespaceURI; }
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLElementStack.h 62 const AtomicString& namespaceURI() const { return m_item->namespaceURI(); }
HTMLStackItem.h 57 static PassRefPtrWillBeRawPtr<HTMLStackItem> create(PassRefPtrWillBeRawPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI)
59 return adoptRefWillBeNoop(new HTMLStackItem(node, token, namespaceURI));
68 const AtomicString& namespaceURI() const { return m_namespaceURI; }
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(PassRefPtrWillBeRawPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI)
234 , m_namespaceURI(namespaceURI)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.cpp 97 ASSERT(first->nodeTest().namespaceURI().isEmpty());
103 first->nodeTest() = Step::NodeTest(second->nodeTest().kind(), second->nodeTest().data(), second->nodeTest().namespaceURI());
187 const AtomicString& namespaceURI = nodeTest.namespaceURI();
194 if (node->namespaceURI() == XMLNSNames::xmlnsNamespaceURI)
198 return namespaceURI.isEmpty() || node->namespaceURI() == namespaceURI;
200 return node->localName() == name && node->namespaceURI() == namespaceURI;
    [all...]
XPathStep.h 62 NodeTest(Kind kind, const AtomicString& data, const AtomicString& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) { }
83 const AtomicString& namespaceURI() const { return m_namespaceURI; }
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
CustomElementConstructorBuilder.cpp 111 AtomicString namespaceURI = HTMLNames::xhtmlNamespaceURI;
113 namespaceURI = SVGNames::svgNamespaceURI;
133 if (namespaceURI == SVGNames::svgNamespaceURI) {
142 tagName = QualifiedName(nullAtom, localName, namespaceURI);
202 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementNamespaceURI(isolate), v8String(isolate, descriptor.namespaceURI()));
281 TOSTRING_VOID(V8StringResource<>, namespaceURI, V8HiddenValue::getHiddenValue(isolate, info.Callee(), V8HiddenValue::customElementNamespaceURI(isolate)));
288 RefPtrWillBeRawPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState);
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.h 162 const AtomicString& namespaceURI = tagQName.namespaceURI();
163 return namespaceURI == starAtom || namespaceURI == element.namespaceURI();
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 280 const AtomicString& namespaceURI = svgElement->lookupNamespaceURI(prefix);
281 if (namespaceURI.isEmpty())
284 return QualifiedName(nullAtom, localName, namespaceURI);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 723 // namespaceURI matches an in scope declaration of one or
843 // If namespace-declarations=true, add the node with the Attr nodes namespaceURI
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 835 m_defaultNamespaceURI = parentElement->namespaceURI();
916 AtomicString namespaceURI = toAtomicString(namespaces[i].uri);
924 prefixedAttributes.append(Attribute(parsedName, namespaceURI));
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlwriter.c 1044 * @namespaceURI: namespace URI or NULL
1053 const xmlChar * namespaceURI)
1076 if (namespaceURI != 0) {
1092 p->uri = xmlStrdup(namespaceURI);
    [all...]
testapi.c     [all...]
  /external/libxml2/
xmlwriter.c 1048 * @namespaceURI: namespace URI or NULL
1057 const xmlChar * namespaceURI)
1080 if (namespaceURI != 0) {
1096 p->uri = xmlStrdup(namespaceURI);
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /external/jdiff/
xerces.jar 

Completed in 1190 milliseconds