/external/smack/asmack-master/static-src/custom/com/kenai/jbosh/ |
H A D | QName.java | 66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>. 68 * namespaceURI is a URI reference identifying the namespace. 77 /** Field namespaceURI */ 78 private String namespaceURI; field in class:QName 98 * @param namespaceURI Namespace URI for the QName 101 public QName(String namespaceURI, String localPart) { argument 102 this(namespaceURI, localPart, emptyString); 108 * @param namespaceURI Namespace URI for the QName 112 public QName(String namespaceURI, String localPart, String prefix) { argument 113 this.namespaceURI [all...] |
/external/smack/src/com/kenai/jbosh/ |
H A D | QName.java | 66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>. 68 * namespaceURI is a URI reference identifying the namespace. 77 /** Field namespaceURI */ 78 private String namespaceURI; field in class:QName 98 * @param namespaceURI Namespace URI for the QName 101 public QName(String namespaceURI, String localPart) { argument 102 this(namespaceURI, localPart, emptyString); 108 * @param namespaceURI Namespace URI for the QName 112 public QName(String namespaceURI, String localPart, String prefix) { argument 113 this.namespaceURI [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
H A D | XMPSchemaRegistry.java | 59 * @param namespaceURI 69 String registerNamespace(String namespaceURI, String suggestedPrefix) throws XMPException; argument 79 * @param namespaceURI 84 String getNamespacePrefix(String namespaceURI); argument 91 * namespaceURI string is not modified if the namespace prefix is not 119 * Does nothing if the URI is not registered, or if the namespaceURI 124 * @param namespaceURI 127 void deleteNamespace(String namespaceURI); argument
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | Attribute.h | 49 const AtomicString& namespaceURI() const { return m_name.namespaceURI(); } function in class:WebCore::Attribute 79 return qualifiedName.prefix() == starAtom || qualifiedName.namespaceURI() == namespaceURI();
|
H A D | CustomElementDescriptor.h | 45 CustomElementDescriptor(const AtomicString& type, const AtomicString& namespaceURI, const AtomicString& localName) argument 47 , m_namespaceURI(namespaceURI) 56 const AtomicString& namespaceURI() const { return m_namespaceURI; } function in class:WebCore::CustomElementDescriptor
|
H A D | TagNodeList.cpp | 33 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 D | QualifiedName.h | 43 static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument 45 return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI)); 59 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) argument 63 , m_namespace(namespaceURI) 65 ASSERT(!namespaceURI.isEmpty() || namespaceURI.isNull()); 69 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI); 83 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); } 86 void setPrefix(const AtomicString& prefix) { *this = QualifiedName(prefix, localName(), namespaceURI()); } 90 const AtomicString& namespaceURI() const { return m_impl->m_namespace; } function in class:WebCore::QualifiedName [all...] |
H A D | TagNodeList.h | 36 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 D | NamedNodeMap.cpp | 58 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, ExceptionState& es) argument 75 size_t index = m_element->hasAttributes() ? m_element->getAttributeItemIndex(QualifiedName(nullAtom, localName, namespaceURI)) : notFound;
|
H A D | CustomElementRegistry.cpp | 92 ASSERT(tagName.namespaceURI() == HTMLNames::xhtmlNamespaceURI || tagName.namespaceURI() == SVGNames::svgNamespaceURI); 110 const CustomElementDescriptor descriptor(type, tagName.namespaceURI(), tagName.localName());
|
H A D | CustomElementDescriptorHash.h | 44 return WTF::pairIntHash(AtomicStringHash::hash(descriptor.type()), WTF::pairIntHash(AtomicStringHash::hash(descriptor.namespaceURI()), AtomicStringHash::hash(descriptor.localName())));
|
H A D | NamedNodeMap.idl | 40 /*[RaisesException]*/ Node getNamedItemNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI, 45 [RaisesException, CustomElementCallbacks=Enable] Node removeNamedItemNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
|
H A D | NamedNodeMap.h | 56 PassRefPtr<Node> getNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName) const; 57 PassRefPtr<Node> removeNamedItemNS(const AtomicString& namespaceURI, const AtomicString& localName, ExceptionState&);
|
H A D | CustomElementRegistrationContext.cpp | 69 if (HTMLNames::xhtmlNamespaceURI == tagName.namespaceURI()) { 71 } else if (SVGNames::svgNamespaceURI == tagName.namespaceURI()) { 96 CustomElementDescriptor descriptor(type, element->namespaceURI(), element->localName());
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
H A D | V8XSLTProcessorCustom.cpp | 56 String namespaceURI = toWebCoreString(args[0]); local 59 imp->setParameter(namespaceURI, localName, value); 69 String namespaceURI = toWebCoreString(args[0]); local 71 String result = imp->getParameter(namespaceURI, localName); 85 String namespaceURI = toWebCoreString(args[0]); local 87 imp->removeParameter(namespaceURI, localName);
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
H A D | XSLTProcessor.idl | 42 [Custom] void setParameter(DOMString namespaceURI, DOMString localName, DOMString value); 43 [Custom, TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString namespaceURI, DOMString localName); 44 [Custom] void removeParameter(DOMString namespaceURI, DOMString localName);
|
H A D | XPathStep.cpp | 81 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 D | XSLTProcessor.h | 59 void setParameter(const String& namespaceURI, const String& localName, const String& value); 60 String getParameter(const String& namespaceURI, const String& localName) const; 61 void removeParameter(const String& namespaceURI, const String& localName);
|
H A D | XPathStep.h | 62 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
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
H A D | DTMNamedNodeMap.java | 189 * @param namespaceURI The namespace URI of the node to retrieve. 197 public Node getNamedItemNS(String namespaceURI, String localName) argument 206 if ((namespaceURI == null && nsURI == null) 207 || (namespaceURI != null && namespaceURI.equals(nsURI))) 218 * Adds a node using its <code>namespaceURI</code> and 224 * accessible using the value of its <code>namespaceURI</code> and 254 * @param namespaceURI The namespace URI of the node to remove. 261 * <code>namespaceURI</code> and <code>localName</code> in this map. 265 public Node removeNamedItemNS(String namespaceURI, Strin argument [all...] |
H A D | DTMNodeProxy.java | 460 * @param namespaceURI 465 public boolean hasAttributeNS(String namespaceURI, String localName) argument 467 return DTM.NULL != dtm.getAttributeNode(node,namespaceURI,localName); 828 * @param namespaceURI 837 String namespaceURI, String qualifiedName) throws DOMException 844 * @param namespaceURI 853 String namespaceURI, String qualifiedName) throws DOMException 860 * @param namespaceURI 866 public final NodeList getElementsByTagNameNS(String namespaceURI, argument 873 boolean isNamespaceURIWildCard = "*".equals(namespaceURI); 836 createElementNS( String namespaceURI, String qualifiedName) argument 852 createAttributeNS( String namespaceURI, String qualifiedName) argument 908 traverseChildren( Vector listVector, Node tempNode, String namespaceURI, String localname, boolean isNamespaceURIWildCard, boolean isLocalNameWildCard) argument 1192 getAttributeNS(String namespaceURI, String localName) argument 1210 setAttributeNS( String namespaceURI, String qualifiedName, String value) argument 1225 removeAttributeNS(String namespaceURI, String localName) argument 1239 getAttributeNodeNS(String namespaceURI, String localName) argument 1404 createDocument(String namespaceURI,String qualfiedName,DocumentType doctype) argument 1710 isDefaultNamespace(String namespaceURI) argument 1781 lookupPrefix(String namespaceURI) argument 1990 renameNode(Node n, String namespaceURI, String name) argument 2175 setIdAttributeNS(String namespaceURI, String localName, boolean makeId) argument [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
H A D | HTMLStackItem.h | 56 static PassRefPtr<HTMLStackItem> create(PassRefPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI) 58 return adoptRef(new HTMLStackItem(node, token, namespaceURI)); 67 const AtomicString& namespaceURI() const { return m_namespaceURI; } function in class:WebCore::HTMLStackItem 78 bool hasTagName(const QualifiedName& name) const { return m_tokenLocalName == name.localName() && m_namespaceURI == name.namespaceURI(); } 96 return namespaceURI() == HTMLNames::xhtmlNamespaceURI 221 m_namespaceURI = m_node->namespaceURI(); 227 HTMLStackItem(PassRefPtr<ContainerNode> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI) 231 , m_namespaceURI(namespaceURI)
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
H A D | SelectorChecker.h | 139 const AtomicString& namespaceURI = tagQName.namespaceURI(); local 140 return namespaceURI == starAtom || namespaceURI == element->namespaceURI();
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | ToXMLSAXHandler.java | 241 public void endElement(String namespaceURI, String localName, String qName) argument 247 if (namespaceURI == null) 250 namespaceURI = m_elemContext.m_elementURI; 252 namespaceURI = getNamespaceURI(qName, true); 263 m_saxHandler.endElement(namespaceURI, localName, qName); 640 String namespaceURI, 647 super.startElement(namespaceURI, localName, name, atts); 664 m_elemContext = m_elemContext.push(namespaceURI, localName, name); 668 if (namespaceURI != null) 669 ensurePrefixIsDeclared(namespaceURI, nam 639 startElement( String namespaceURI, String localName, String name, Attributes atts) argument [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
H A D | XMPSchemaRegistryImpl.java | 75 public synchronized String registerNamespace(String namespaceURI, String suggestedPrefix) argument 78 ParameterAsserts.assertSchemaNS(namespaceURI); 92 String registeredPrefix = (String) namespaceToPrefixMap.get(namespaceURI); 114 prefixToNamespaceMap.put(suggestedPrefix, namespaceURI); 115 namespaceToPrefixMap.put(namespaceURI, suggestedPrefix); 126 public synchronized void deleteNamespace(String namespaceURI) argument 128 String prefixToDelete = getNamespacePrefix(namespaceURI); 131 namespaceToPrefixMap.remove(namespaceURI); 140 public synchronized String getNamespacePrefix(String namespaceURI) argument 142 return (String) namespaceToPrefixMap.get(namespaceURI); [all...] |