HomeSort by relevance Sort by last modified time
    Searched refs:createComment (Results 1 - 25 of 37) sorted by null

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreatecomment.java 31 * The "createComment(data)" method creates a new Comment
34 * "createComment(data)" method. It should create a new
69 newCommentNode = doc.createComment("This is a new Comment node");
hc_documentcreatecomment.java 31 * The "createComment(data)" method creates a new Comment
34 * "createComment(data)" method. It should create a new
68 newCommentNode = doc.createComment("This is a new Comment node");
hc_nodevalue02.java 63 newNode = doc.createComment("This is a new Comment node");
nodevalue02.java 63 newNode = doc.createComment("This is a new Comment node");
hc_nodecommentnodeattributes.java 81 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodename.java 81 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodetype.java 80 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodevalue.java 80 commentNode = doc.createComment(" This is a comment");
nodecommentnodeattributes.java 81 childNode = doc.createComment("This is a comment");
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode17.java 83 commentToImport = doc.createComment("Document.importNode test for a COMMENT_NODE");
importNode03.java 80 comment = aNewDoc.createComment("this is a comment");
importNode04.java 82 comment = aNewDoc.createComment("descendant1");
nodenormalize01.java 105 comment = newDoc.createComment("comment");
  /libcore/luni/src/main/java/org/w3c/dom/
Document.java 106 public Comment createComment(String data);
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 65 public Comment createComment(String data) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 144 return createComment(((Comment) node).getData());
323 public CommentImpl createComment(String data) {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 135 comment = newDoc.createComment("comment");
ImportNode.java 191 comment = aNewDoc.createComment("this is a comment");
220 comment = aNewDoc.createComment("descendant1");
DocumentImportNode.java 460 .createComment("Document.importNode test for a COMMENT_NODE");
  /libcore/luni/src/test/java/tests/xml/
NormalizeTest.java 406 root.appendChild(document.createComment("ABC -- DEF"));
512 Comment comment = document.createComment("");
  /libcore/luni/src/main/java/org/apache/xml/utils/
DOMBuilder.java 633 append(m_doc.createComment(new String(ch, start, length)));
UnImplNode.java 860 public Comment createComment(String data)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 254 node.appendChild(document.createComment(parser.getText()));
  /external/webkit/WebCore/dom/
Document.idl 39 [ReturnsNew] Comment createComment(in DOMString data);
  /external/webkit/WebKit/win/Interfaces/
DOMCore.idl 359 - (DOMComment *)createComment:(NSString *)data;
361 HRESULT createComment([in] BSTR data, [out, retval] IDOMComment** result);

Completed in 573 milliseconds

1 2