Home
last modified time | relevance | path

Searched refs:Comment (Results 1 – 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
DHtmlDocument.java192 public static Comment createHtmlComment(String content) { in createHtmlComment()
193 return new Comment(content); in createHtmlComment()
275 public static class Comment extends Node { class in HtmlDocument
282 public Comment(String content) { in Comment() method in HtmlDocument.Comment
915 Comment visitComment(Comment n); in visitComment()
973 } else if (originalNode instanceof Comment) { in filter()
974 resultNode = filter.visitComment((Comment) originalNode); in filter()
1010 } else if (originalNode instanceof Comment) { in filter()
1011 filterComment((Comment) originalNode, out); in filter()
1024 public void filterComment(Comment originalComment, List<Node> out) { in filterComment()
[all …]
DHtmlTreeBuilder.java124 public void visitComment(HtmlDocument.Comment n) { in visitComment()
/packages/apps/Mms/src/com/android/mms/dom/
DDocumentImpl.java22 import org.w3c.dom.Comment;
65 public Comment createComment(String data) { in createComment()