Lines Matching refs:xChild

605             XNode xChild = xDFClone.getFirstChild();  in testXDocumentFragment()  local
606 assertNotNull("XDocumentFragment.cloneNode(true)", xChild); in testXDocumentFragment()
607 XElement xE = UnoRuntime.queryInterface(XElement.class, xChild); in testXDocumentFragment()
986 XNode xChild = xElemFooClone.getFirstChild(); in testXElement() local
987 assertNotNull("XElement.cloneNode(true)", xChild); in testXElement()
989 UnoRuntime.queryInterface(XElement.class, xChild); in testXElement()
1199 XNode xChild = xAttrClone.getFirstChild(); in testXAttr() local
1200 assertNotNull("XAttr.cloneNode(true)", xChild); in testXAttr()
1201 XText xText = UnoRuntime.queryInterface(XText.class, xChild); in testXAttr()
1212 XNode xChild = xAttrClone.getFirstChild(); in testXAttr() local
1213 assertNotNull("XAttr.cloneNode(true)", xChild); in testXAttr()
1214 XText xText = UnoRuntime.queryInterface(XText.class, xChild); in testXAttr()
1224 XNode xChild = xChildren.item(0); in testXAttr() local
1225 assertNotNull("XAttr.getChildNodes()", xChild); in testXAttr()
1226 XText xText = UnoRuntime.queryInterface(XText.class, xChild); in testXAttr()
1301 XNode xChild = xAttr.getFirstChild(); in testXAttr() local
1302 assertNotNull(xChild); in testXAttr()
1305 XNode xRet = xAttr.insertBefore(xText, xChild); in testXAttr()
1307 xRet, xChild); // why does this return the old node? in testXAttr()
1313 xChild, xAttr.getLastChild()); in testXAttr()
1332 xAttr.replaceChild(xChild, xChild); // child in testXAttr()
1339 XNode xReplaced = xAttr.replaceChild(xTextNew, xChild); in testXAttr()
1340 assertEquals("XAttr.replaceChild(xTextNew, xChild)", xChild, xReplaced); in testXAttr()