Home
last modified time | relevance | path

Searched refs:createComment (Results 1 – 20 of 20) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dhc_nodevalue02.java63 newNode = doc.createComment("This is a new Comment node"); in runTest()
Dnodevalue02.java63 newNode = doc.createComment("This is a new Comment node"); in runTest()
Ddocumentcreatecomment.java69 newCommentNode = doc.createComment("This is a new Comment node"); in runTest()
Dhc_documentcreatecomment.java68 newCommentNode = doc.createComment("This is a new Comment node"); in runTest()
Dhc_nodecommentnodevalue.java80 commentNode = doc.createComment(" This is a comment"); in runTest()
Dhc_nodecommentnodeattributes.java81 commentNode = doc.createComment("This is a comment"); in runTest()
Dhc_nodecommentnodetype.java80 commentNode = doc.createComment("This is a comment"); in runTest()
Dnodecommentnodeattributes.java81 childNode = doc.createComment("This is a comment"); in runTest()
Dhc_nodecommentnodename.java81 commentNode = doc.createComment("This is a comment"); in runTest()
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
DimportNode04.java82 comment = aNewDoc.createComment("descendant1"); in runTest()
Ddocumentimportnode17.java83 commentToImport = doc.createComment("Document.importNode test for a COMMENT_NODE"); in runTest()
DimportNode03.java80 comment = aNewDoc.createComment("this is a comment"); in runTest()
Dnodenormalize01.java105 comment = newDoc.createComment("comment"); in runTest()
/libcore/luni/src/main/java/org/w3c/dom/
DDocument.java106 public Comment createComment(String data); in createComment() method
/libcore/luni/src/test/java/tests/org/w3c/dom/
DImportNode.java167 comment = aNewDoc.createComment("this is a comment"); in testImportNode3()
190 comment = aNewDoc.createComment("descendant1"); in testImportNode4()
DNodeNormalize.java123 comment = newDoc.createComment("comment"); in testNormalize()
DDocumentImportNode.java382 .createComment("Document.importNode test for a COMMENT_NODE"); in testImportNode17()
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DDocumentImpl.java146 return createComment(((Comment) node).getData()); in shallowCopy()
334 public CommentImpl createComment(String data) { in createComment() method in DocumentImpl
/libcore/luni/src/test/java/libcore/xml/
DNormalizeTest.java404 root.appendChild(document.createComment("ABC -- DEF")); in testCommentContainingDoubleDash()
510 Comment comment = document.createComment(""); in testInvalidCharactersComment()
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderImpl.java216 node.appendChild(document.createComment(parser.getText())); in parse()