/libcore/luni/src/main/java/javax/xml/namespace/ |
D | QName.java | 97 private final String namespaceURI; field in QName 152 public QName(final String namespaceURI, final String localPart) { in QName() argument 153 this(namespaceURI, localPart, XMLConstants.DEFAULT_NS_PREFIX); in QName() 193 public QName(String namespaceURI, String localPart, String prefix) { in QName() argument 196 if (namespaceURI == null) { in QName() 197 this.namespaceURI = XMLConstants.NULL_NS_URI; in QName() 199 this.namespaceURI = namespaceURI; in QName() 263 return namespaceURI; in getNamespaceURI() 320 return localPart.equals(qName.localPart) && namespaceURI.equals(qName.namespaceURI); in equals() 339 return namespaceURI.hashCode() ^ localPart.hashCode(); in hashCode() [all …]
|
D | NamespaceContext.java | 191 String getPrefix(String namespaceURI); in getPrefix() argument 255 Iterator getPrefixes(String namespaceURI); in getPrefixes() argument
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
D | ElementImpl.java | 46 String namespaceURI; field in ElementImpl 53 ElementImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { in ElementImpl() argument 55 setNameNS(this, namespaceURI, qualifiedName); in ElementImpl() 74 private int indexOfAttributeNS(String namespaceURI, String localName) { in indexOfAttributeNS() argument 77 if (Objects.equals(namespaceURI, attr.getNamespaceURI()) in indexOfAttributeNS() 96 public String getAttributeNS(String namespaceURI, String localName) { in getAttributeNS() argument 97 Attr attr = getAttributeNodeNS(namespaceURI, localName); in getAttributeNS() 116 public AttrImpl getAttributeNodeNS(String namespaceURI, String localName) { in getAttributeNodeNS() argument 117 int i = indexOfAttributeNS(namespaceURI, localName); in getAttributeNodeNS() 171 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) { in getElementsByTagNameNS() argument [all …]
|
D | AttrImpl.java | 42 String namespaceURI; field in AttrImpl 48 AttrImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { in AttrImpl() argument 50 setNameNS(this, namespaceURI, qualifiedName); in AttrImpl() 71 return namespaceURI; in getNamespaceURI() 107 this.prefix = validatePrefix(prefix, namespaceAware, namespaceURI); in setPrefix()
|
D | NodeImpl.java | 203 static String validatePrefix(String prefix, boolean namespaceAware, String namespaceURI) { in validatePrefix() argument 209 if (namespaceURI == null in validatePrefix() 211 … || "xml".equals(prefix) && !"http://www.w3.org/XML/1998/namespace".equals(namespaceURI) in validatePrefix() 212 … || "xmlns".equals(prefix) && !"http://www.w3.org/2000/xmlns/".equals(namespaceURI)) { in validatePrefix() 228 static void setNameNS(NodeImpl node, String namespaceURI, String qualifiedName) { in setNameNS() argument 236 prefix = validatePrefix(qualifiedName.substring(0, p), true, namespaceURI); in setNameNS() 247 && !"http://www.w3.org/2000/xmlns/".equals(namespaceURI)) { in setNameNS() 253 attr.namespaceURI = namespaceURI; in setNameNS() 261 element.namespaceURI = namespaceURI; in setNameNS() 490 public final String lookupPrefix(String namespaceURI) { in lookupPrefix() argument [all …]
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | DocumentCreateAttributeNS.java | 82 String namespaceURI = null; in testCreateAttributeNS1() local 89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName); in testCreateAttributeNS1() 109 String namespaceURI; in testCreateAttributeNS2() local 117 namespaceURI = attribute1.getNamespaceURI(); in testCreateAttributeNS2() 125 "http://www.w3.org/XML/1998/namespace", namespaceURI); in testCreateAttributeNS2() 132 namespaceURI = attribute2.getNamespaceURI(); in testCreateAttributeNS2() 139 "http://www.w3.org/2000/xmlns/", namespaceURI); in testCreateAttributeNS2() 144 String namespaceURI = "http://www.w3.org/DOM/Test/Level2"; in testCreateAttributeNS3() local 164 doc.createAttributeNS(namespaceURI, qualifiedName); in testCreateAttributeNS3() 175 String namespaceURI = "http://www.w3.org/DOM/Test/Level2"; in testCreateAttributeNS4() local [all …]
|
D | SetAttributeNS.java | 80 String namespaceURI = "http://www.nist.gov"; in testSetAttributeNS1() local 92 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, in testSetAttributeNS1() 101 String namespaceURI = "http://www.nist.gov"; in testSetAttributeNS2() local 114 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, in testSetAttributeNS2() 191 String namespaceURI = "http://www.newattr.com"; in testSetAttributeNS5() local 202 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, in testSetAttributeNS5() 205 namespaceURI, localName); in testSetAttributeNS5() 209 String namespaceURI = "http://www.nist.gov"; in testSetAttributeNS6() local 221 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, in testSetAttributeNS6() 230 String namespaceURI = "http://www.nist.gov"; in testSetAttributeNS7() local [all …]
|
D | CreateAttributeNS.java | 63 String namespaceURI = "http://www.ecommerce.org/"; in testCreateAttributeNS1() local 72 doc.createAttributeNS(namespaceURI, malformedName); in testCreateAttributeNS1() 80 String namespaceURI = null; in testCreateAttributeNS2() local 90 doc.createAttributeNS(namespaceURI, qualifiedName); in testCreateAttributeNS2() 98 String namespaceURI = "http://www.wedding.com/"; in testCreateAttributeNS3() local 137 doc.createAttributeNS(namespaceURI, qualifiedName); in testCreateAttributeNS3() 146 String namespaceURI = "http://www.w3.org/XML/1998/namespaces"; in testCreateAttributeNS4() local 155 doc.createAttributeNS(namespaceURI, qualifiedName); in testCreateAttributeNS4() 163 String namespaceURI = "http://www.ecommerce.org/"; in testCreateAttributeNS5() local 169 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName); in testCreateAttributeNS5() [all …]
|
D | CreateElementNS.java | 81 String namespaceURI = "http://www.ecommerce.org/"; in testCreateElementNS1() local 90 doc.createElementNS(namespaceURI, malformedName); in testCreateElementNS1() 98 String namespaceURI = null; in testCreateElementNS2() local 108 doc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS2() 116 String namespaceURI = "http://www.wedding.com/"; in testCreateElementNS3() local 156 doc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS3() 165 String namespaceURI = "http://www.w3.org/XML/1998/namespaces"; in testCreateElementNS4() local 174 doc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS4() 182 String namespaceURI = "http://www.nist.gov"; in testCreateElementNS5() local 188 newElement = doc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS5() [all …]
|
D | GetAttributeNS.java | 91 String namespaceURI = "http://www.nist.gov"; in testGetAttributeNS2() local 101 newAttribute = doc.createAttributeNS(namespaceURI, qualifiedName); in testGetAttributeNS2() 108 attrValue = testAddr.getAttributeNS(namespaceURI, localName); in testGetAttributeNS2() 112 String namespaceURI = "http://www.nist.gov"; in testGetAttributeNS3() local 122 testAddr.removeAttributeNS(namespaceURI, localName); in testGetAttributeNS3() 123 attrValue = testAddr.getAttributeNS(namespaceURI, localName); in testGetAttributeNS3() 127 String namespaceURI = "http://www.nist.gov"; in testGetAttributeNS4() local 137 doc.createAttributeNS(namespaceURI, qualifiedName); in testGetAttributeNS4() 141 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue"); in testGetAttributeNS4() 142 attrValue = testAddr.getAttributeNS(namespaceURI, localName); in testGetAttributeNS4()
|
D | CreateDocument.java | 84 String namespaceURI = "http://www.ecommerce.org/"; in testCreateDocument1() local 96 domImpl.createDocument(namespaceURI, malformedName, docType); in testCreateDocument1() 104 String namespaceURI = null; in testCreateDocument2() local 117 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument2() 169 String namespaceURI = "http://www.ecommerce.org/schema"; in testCreateDocument5() local 212 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument5() 221 String namespaceURI = "http://ecommerce.org/schema"; in testCreateDocument6() local 233 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument6() 241 String namespaceURI = "http://www.ecommerce.org/schema"; in testCreateDocument7() local 252 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument7() [all …]
|
D | HasAttributeNS.java | 75 String namespaceURI = "http://www.usa.com"; in testHasAttributeNS1() local 83 state = testNode.hasAttributeNS(namespaceURI, localName); in testHasAttributeNS1() 88 String namespaceURI = "http://www.nomatch.com"; in testHasAttributeNS2() local 96 state = testNode.hasAttributeNS(namespaceURI, localName); in testHasAttributeNS2() 101 String namespaceURI = "http://www.nist.gov"; in testHasAttributeNS3() local 110 state = testNode.hasAttributeNS(namespaceURI, localName); in testHasAttributeNS3() 131 String namespaceURI = "http://www.usa.com"; in testHasAttributeNS5() local 139 state = testNode.hasAttributeNS(namespaceURI, localName); in testHasAttributeNS5()
|
D | DocumentCreateElementNS.java | 58 String namespaceURI = "http://www.w3.org/DOM/Test/level2"; in testCreateElementNS1() local 66 element = doc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS1() 82 String namespaceURI = null; in testCreateElementNS2() local 90 doc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS2() 100 String namespaceURI = null; in testCreateElementNS5() local 108 doc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS5() 122 String namespaceURI = "http://www.w3.org/xml/1998/namespace "; in testCreateElementNS6() local 132 newDoc.createElementNS(namespaceURI, qualifiedName); in testCreateElementNS6()
|
D | DOMImplementationCreateDocument.java | 61 String namespaceURI = "http://www.w3.org/DOMTest/L2"; in testCreateDocument3() local 79 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, in testCreateDocument3() 88 String namespaceURI = null; in testCreateDocument4() local 99 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument4() 110 String namespaceURI = "http://www.w3.org/xml/1998/namespace"; in testCreateDocument5() local 120 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument5() 131 String namespaceURI = "http://www.w3.org/DOMTest/level2"; in testCreateDocument7() local 140 domImpl.createDocument(namespaceURI, ":", docType); in testCreateDocument7()
|
D | SetNamedItemNS.java | 104 String namespaceURI = "http://www.usa.com"; in testSetNamedItemNS2() local 115 arg = anotherDoc.createAttributeNS(namespaceURI, qualifiedName); in testSetNamedItemNS2() 132 String namespaceURI = "http://www.nist.gov"; in testSetNamedItemNS3() local 143 arg = doc.createAttributeNS(namespaceURI, qualifiedName); in testSetNamedItemNS3() 149 retnode = attributes.getNamedItemNS(namespaceURI, "newAttr"); in testSetNamedItemNS3() 197 String namespaceURI = "http://www.usa.com"; in testSetNamedItemNS5() local 207 arg = doc.createAttributeNS(namespaceURI, qualifiedName); in testSetNamedItemNS5()
|
D | SetAttributeNodeNS.java | 83 String namespaceURI = "http://www.newattr.com"; in testSetAttributeNode1() local 97 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName); in testSetAttributeNode1() 149 String namespaceURI = "http://www.newattr.com"; in testSetAttributeNode3() local 160 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName); in testSetAttributeNode3() 183 String namespaceURI = "http://www.newattr.com"; in testSetAttributeNode5() local 193 newAttr = doc2.createAttributeNS(namespaceURI, qualifiedName); in testSetAttributeNode5()
|
/libcore/luni/src/main/java/org/w3c/dom/ |
D | Element.java | 179 public String getAttributeNS(String namespaceURI, in getAttributeNS() argument 225 public void setAttributeNS(String namespaceURI, in setAttributeNS() argument 254 public void removeAttributeNS(String namespaceURI, in removeAttributeNS() argument 275 public Attr getAttributeNodeNS(String namespaceURI, in getAttributeNodeNS() argument 324 public NodeList getElementsByTagNameNS(String namespaceURI, in getElementsByTagNameNS() argument 359 public boolean hasAttributeNS(String namespaceURI, in hasAttributeNS() argument 412 public void setIdAttributeNS(String namespaceURI, in setIdAttributeNS() argument
|
D | Document.java | 376 public Element createElementNS(String namespaceURI, in createElementNS() argument 445 public Attr createAttributeNS(String namespaceURI, in createAttributeNS() argument 460 public NodeList getElementsByTagNameNS(String namespaceURI, in getElementsByTagNameNS() argument 810 String namespaceURI, in renameNode() argument
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | documentcreateattributeNS02.java | 72 String namespaceURI; in runTest() local 79 namespaceURI = attribute1.getNamespaceURI(); in runTest() 84 …umentcreateattributeNS02_att1_namespaceURI", "http://www.w3.org/XML/1998/namespace", namespaceURI); in runTest() 90 namespaceURI = attribute2.getNamespaceURI(); in runTest() 94 …ls("documentcreateattributeNS02_att2_namespaceURI", "http://www.w3.org/2000/xmlns/", namespaceURI); in runTest()
|
D | getAttributeNS04.java | 68 String namespaceURI = "http://www.nist.gov"; in runTest() local 78 newAttribute = doc.createAttributeNS(namespaceURI, qualifiedName); in runTest() 82 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue"); in runTest() 83 attrValue = testAddr.getAttributeNS(namespaceURI, localName); in runTest()
|
D | setAttributeNS09.java | 71 String namespaceURI = "http://www.newattr.com"; in runTest() local 85 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue"); in runTest() 86 addrAttr = ((Element) /*Node */testAddr).getAttributeNodeNS(namespaceURI, localName); in runTest() 87 resultAttr = ((Element) /*Node */testAddr).getAttributeNS(namespaceURI, localName); in runTest()
|
D | getAttributeNS03.java | 67 String namespaceURI = "http://www.nist.gov"; in runTest() local 77 testAddr.removeAttributeNS(namespaceURI, localName); in runTest() 78 attrValue = testAddr.getAttributeNS(namespaceURI, localName); in runTest()
|
D | setAttributeNS05.java | 72 String namespaceURI = "http://www.newattr.com"; in runTest() local 83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "<newValue>"); in runTest() 84 resultAttr = ((Element) /*Node */testAddr).getAttributeNS(namespaceURI, localName); in runTest()
|
D | setNamedItemNS03.java | 69 String namespaceURI = "http://www.nist.gov"; in runTest() local 80 arg = doc.createAttributeNS(namespaceURI, qualifiedName); in runTest() 86 retnode = attributes.getNamedItemNS(namespaceURI, "newAttr"); in runTest()
|
D | getAttributeNS02.java | 68 String namespaceURI = "http://www.nist.gov"; in runTest() local 78 newAttribute = doc.createAttributeNS(namespaceURI, qualifiedName); in runTest() 85 attrValue = testAddr.getAttributeNS(namespaceURI, localName); in runTest()
|