Lines Matching refs:ns
169 String ns = "http://example.com/"; in testXDocument() local
180 XAttr xAttr = xDoc.createAttributeNS(ns, "e:foo"); in testXDocument()
218 XElement xElemFooNs = xDoc.createElementNS(ns, "foo"); in testXDocument()
253 XNodeList xNodeList = xDoc.getElementsByTagNameNS(ns, "foo"); in testXDocument()
288 XNodeList xNodeList = xDoc.getElementsByTagNameNS(ns, "foo"); in testXDocument()
415 assertEquals("XDocument.cloneNode(true)", ns, xE.getNamespaceURI()); in testXDocument()
775 String ns = "http://example.com/"; in testXElement() local
780 XElement xElemFooNs = xDoc.createElementNS(ns, "e:foo"); in testXElement()
793 XNodeList xNodeList = xElemFoo.getElementsByTagNameNS(ns, "bar"); in testXElement()
812 XNodeList xNodeList = xElemFoo.getElementsByTagNameNS(ns, "foo"); in testXElement()
825 String ret = xElemFoo.getAttributeNS(ns, "foo"); in testXElement()
833 XNode xAttr = xElemFoo.getAttributeNodeNS(ns, "foo"); in testXElement()
838 xElemFoo.hasAttributeNS(ns, "foo")); in testXElement()
842 xElemFoo.removeAttributeNS(ns, "foo"); in testXElement()
845 XAttr xAttrNs = xDoc.createAttributeNS(ns, "foo"); in testXElement()
892 xAttrNsSet, xElemFooNs.getAttributeNodeNS(ns, "foo")); in testXElement()
923 xElemFooNs.setAttributeNS(ns, "foo", "bar"); in testXElement()
925 "bar", xElemFooNs.getAttributeNS(ns, "foo")); in testXElement()
931 xElemFooNs.removeAttributeNS(ns, "foo"); in testXElement()
933 xElemFooNs.getAttributeNodeNS(ns, "foo")); in testXElement()
948 xElemFoo.setAttributeNS(ns, "foo", "bar"); in testXElement()
954 XNode xAttr_ = xAttrMap.getNamedItemNS(ns, "foo"); in testXElement()
985 xElemFooClone.hasAttributeNS(ns, "foo")); in testXElement()
993 assertEquals("XElement.cloneNode(true)", ns, in testXElement()
1017 assertEquals("XElement.getNamespaceURI()", ns, in testXElement()
1157 String ns = "http://example.com/"; in testXAttr() local
1162 XAttr xAttrNs = xDoc.createAttributeNS(ns, "e:foo"); in testXAttr()
1239 assertEquals("XAttr.getNamespaceURI()", ns, xAttrNs.getNamespaceURI()); in testXAttr()
2371 String ns = "http://example.com/"; in testXNamedNodeMap_AttributesMap() local
2390 xElem.setAttributeNS(ns, "n:bar", "43"); in testXNamedNodeMap_AttributesMap()
2391 XAttr xAttrBarNs = xElem.getAttributeNodeNS(ns, "bar"); in testXNamedNodeMap_AttributesMap()
2398 xAttrBarNs, xAttributes.getNamedItemNS(ns, "bar")); in testXNamedNodeMap_AttributesMap()
2400 XNode xAttrBarNsRem = xAttributes.removeNamedItemNS(ns, "bar"); in testXNamedNodeMap_AttributesMap()
2428 xAttrBarNsSet, xAttributes.getNamedItemNS(ns, "bar")); in testXNamedNodeMap_AttributesMap()
2455 String ns = "http://example.com/"; in testXXPathAPI() local
2463 XElement xFooNs = xDoc.createElementNS(ns, "ns:foo"); in testXXPathAPI()
2565 xXPathAPI.registerNS("pre", ns); in testXXPathAPI()
2572 xXPathAPI.unregisterNS("pre", ns); in testXXPathAPI()
2593 String ns = "http://example.com/"; in testXXPathObject() local
2601 XElement xFooNs = xDoc.createElementNS(ns, "ns:foo"); in testXXPathObject()
2665 String ns = "http://example.com/"; in testXNodeList_NodeList() local
2673 XElement xFooNs = xDoc.createElementNS(ns, "ns:foo"); in testXNodeList_NodeList()