Lines Matching refs:hasChildNodes

339                 assertFalse("XDocument.importNode(false)", xE.hasChildNodes());  in testXDocument()
353 xImpRoot.hasChildNodes()); in testXDocument()
365 xImpFoo.hasChildNodes()); in testXDocument()
380 xImpBar.hasChildNodes()); in testXDocument()
397 xDocClone.hasChildNodes()); in testXDocument()
408 assertTrue("XDocument.cloneNode(true)", xDocClone.hasChildNodes()); in testXDocument()
457 assertTrue("XDocument.hasChildNodes()", xDoc.hasChildNodes()); in testXDocument()
559 assertTrue("XDocument.removeChild(xPI)", xDoc.hasChildNodes()); in testXDocument()
593 xDFClone.hasChildNodes()); in testXDocumentFragment()
604 xDFClone.hasChildNodes()); in testXDocumentFragment()
659 assertTrue("XDocumentFragment.hasChildNodes()", xDF.hasChildNodes()); in testXDocumentFragment()
761 assertTrue("XDocumentFragment.removeChild(xText)", xDF.hasChildNodes()); in testXDocumentFragment()
972 xElemFooClone.hasChildNodes()); in testXElement()
983 xElemFooClone.hasChildNodes()); in testXElement()
1046 assertTrue("XElement.hasChildNodes()", xElemFoo.hasChildNodes()); in testXElement()
1047 assertFalse("XElement.hasChildNodes()", xElemFooNs.hasChildNodes()); in testXElement()
1143 assertTrue("XElement.removeChild(xComment)", xElemFoo.hasChildNodes()); in testXElement()
1198 assertTrue("XAttr.cloneNode(true)", xAttrClone.hasChildNodes()); in testXAttr()
1211 assertTrue("XAttr.cloneNode(true)", xAttrClone.hasChildNodes()); in testXAttr()
1264 assertTrue("XAttr.hasChildNodes()", xAttr.hasChildNodes()); in testXAttr()
1359 assertTrue("XAttr.removeChild(xText)", xAttr.hasChildNodes()); in testXAttr()
1449 xTextClone.hasChildNodes()); in testXText()
1457 assertFalse("XText.cloneNode(true)", xTextClone.hasChildNodes()); in testXText()
1491 assertFalse("XText.hasChildNodes()", xText.hasChildNodes()); in testXText()
1633 xCDSClone.hasChildNodes()); in testXCDataSection()
1642 xCDSClone.hasChildNodes()); in testXCDataSection()
1681 assertFalse("XCDATASection.hasChildNodes()", xCDS.hasChildNodes()); in testXCDataSection()
1807 xCommentClone.hasChildNodes()); in testXComment()
1816 xCommentClone.hasChildNodes()); in testXComment()
1854 assertFalse("XComment.hasChildNodes()", xComment.hasChildNodes()); in testXComment()
1937 xERClone.hasChildNodes()); in testXEntityReference()
2005 assertTrue("XEntityReference.hasChildNodes()", xER.hasChildNodes()); in testXEntityReference()
2106 assertTrue("XEntityReference.removeChild(xText)", xER.hasChildNodes()); in testXEntityReference()
2141 xPIClone.hasChildNodes()); in testXProcessingInstruction()
2150 xPIClone.hasChildNodes()); in testXProcessingInstruction()
2195 xPI.hasChildNodes()); in testXProcessingInstruction()
2749 public boolean hasChildNodes() { return m_children.length != 0; } in hasChildNodes() method in DOMTest.MockNode