Lines Matching refs:xComment

189         XComment xComment = xDoc.createComment("foo");  in testXDocument()  local
190 assertNotNull("XDocument.createComment", xComment); in testXDocument()
503 XNode xRet = xDoc.insertBefore(xComment, xElemFooNs); in testXDocument()
507 xComment, xDoc.getFirstChild()); in testXDocument()
509 xDoc, xComment.getParentNode()); in testXDocument()
537 XNode xReplaced = xDoc.replaceChild(xPI, xComment); in testXDocument()
539 xReplaced, xComment); in testXDocument()
584 XComment xComment = xDoc.createComment("foo"); in testXDocumentFragment() local
705 XNode xRet = xDF.insertBefore(xComment, xElemFoo); in testXDocumentFragment()
709 xComment, xDF.getFirstChild()); in testXDocumentFragment()
711 xDF, xComment.getParentNode()); in testXDocumentFragment()
739 XNode xReplaced = xDF.replaceChild(xText, xComment); in testXDocumentFragment()
741 xReplaced, xComment); in testXDocumentFragment()
752 xDF.removeChild(xComment); in testXDocumentFragment()
938 XComment xComment = xDoc.createComment("foo"); in testXElement() local
1121 XNode xReplaced = xElemFoo.replaceChild(xComment, xText); in testXElement()
1125 xComment, xElemFoo.getFirstChild()); in testXElement()
1141 XNode xRemoved = xElemFoo.removeChild(xComment); in testXElement()
1142 assertEquals("XElement.removeChild(xComment)", xRemoved, xComment); in testXElement()
1746 XComment xComment = xDoc.createComment("foo"); in testXComment() local
1747 assertNotNull(xComment); in testXComment()
1749 assertEquals("XComment.getData", "foo", xComment.getData()); in testXComment()
1750 assertEquals("XComment.getLength", 3, xComment.getLength()); in testXComment()
1752 xComment.appendData("baz"); in testXComment()
1753 assertEquals("XComment.appendData", "foobaz", xComment.getData()); in testXComment()
1756 xComment.deleteData(999,999); in testXComment()
1762 xComment.deleteData(0, 3); in testXComment()
1763 assertEquals("XComment.deleteData", "baz", xComment.getData()); in testXComment()
1766 xComment.insertData(999,"blah"); in testXComment()
1772 xComment.insertData(1, "arb"); in testXComment()
1773 assertEquals("XComment.insertData", "barbaz", xComment.getData()); in testXComment()
1776 xComment.replaceData(999,999,"x"); in testXComment()
1782 xComment.replaceData(3, 3, "foo"); in testXComment()
1783 assertEquals("XComment.replaceData", "barfoo", xComment.getData()); in testXComment()
1785 xComment.setData("quux"); in testXComment()
1786 assertEquals("XComment.setData", "quux", xComment.getData()); in testXComment()
1789 xComment.subStringData(999,999); in testXComment()
1796 xComment.subStringData(3, 1)); in testXComment()
1801 XNode xCommentCloneN = xComment.cloneNode(false); in testXComment()
1810 XNode xCommentCloneN = xComment.cloneNode(true); in testXComment()
1819 assertNull("XComment.getAttributes()", xComment.getAttributes()); in testXComment()
1822 XNodeList xChildren = xComment.getChildNodes(); in testXComment()
1826 assertEquals("XComment.getLocalName()", "", xComment.getLocalName()); in testXComment()
1829 xComment.getNamespaceURI()); in testXComment()
1831 assertNull("XComment.getNextSibling()", xComment.getNextSibling()); in testXComment()
1834 xComment.getNodeName()); in testXComment()
1837 COMMENT_NODE == xComment.getNodeType()); in testXComment()
1840 xComment.getNodeValue()); in testXComment()
1843 xDoc, xComment.getOwnerDocument()); in testXComment()
1845 assertNull("XComment.getParentNode()", xComment.getParentNode()); in testXComment()
1847 assertEquals("XComment.getPrefix()", "", xComment.getPrefix()); in testXComment()
1850 xComment.getPreviousSibling()); in testXComment()
1852 assertFalse("XComment.hasAttributes()", xComment.hasAttributes()); in testXComment()
1854 assertFalse("XComment.hasChildNodes()", xComment.hasChildNodes()); in testXComment()
1857 xComment.isSupported("frobnication", "v99.33.0.0.0.1")); in testXComment()
1859 xComment.normalize(); in testXComment()
1861 xComment.setNodeValue("42"); in testXComment()
1862 assertEquals("XComment.setNodeValue()", "42", xComment.getNodeValue()); in testXComment()
1865 xComment.setPrefix("foo"); in testXComment()
1876 xComment.appendChild(null); in testXComment()
1880 xComment.appendChild(xComment2); in testXComment()
1888 xComment.insertBefore(xComment2, xComment3); in testXComment()
1893 xComment.replaceChild(xComment2, xComment3); in testXComment()
1898 xComment.removeChild(null); in testXComment()
1903 xComment.removeChild(xComment2); in testXComment()
1928 XComment xComment = xDoc.createComment("foo"); in testXEntityReference() local
2050 XNode xRet = xER.insertBefore(xComment, xERChild); in testXEntityReference()
2054 xComment, xER.getFirstChild()); in testXEntityReference()
2056 xER, xComment.getParentNode()); in testXEntityReference()
2084 XNode xReplaced = xER.replaceChild(xText, xComment); in testXEntityReference()
2086 xReplaced, xComment); in testXEntityReference()