Searched refs:EndTag (Results 1 - 7 of 7) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlTreeBuilder.java19 import com.android.mail.lib.html.parser.HtmlDocument.EndTag;
85 EndTag end = HtmlDocument.createEndTag(element);
95 public void visitEndTag(HtmlDocument.EndTag t) {
146 HtmlDocument.EndTag endTag = HtmlDocument.createEndTag(element);
231 void seeEndTag(HtmlDocument.EndTag endTag) {
H A DHtmlDocument.java137 public static EndTag createEndTag(HTML.Element element) {
142 * @see HtmlDocument.EndTag#EndTag(HTML.Element, String)
144 public static EndTag createEndTag(HTML.Element element, String originalHtml) {
145 return new EndTag(element, originalHtml);
694 * EndTag is a closing HTML tag.
696 public static class EndTag extends Node { class in class:HtmlDocument
710 private EndTag(HTML.Element element, String originalHtml) { method in class:HtmlDocument.EndTag
911 EndTag visitEndTag(EndTag
[all...]
H A DHtmlTree.java197 (node instanceof HtmlDocument.EndTag &&
198 ((HtmlDocument.EndTag) node).getElement().breaksFlow())) {
245 if (node instanceof HtmlDocument.EndTag) {
247 ((HtmlDocument.EndTag)node).getElement())) {
304 } else if (node instanceof HtmlDocument.EndTag) {
860 } else if (n instanceof HtmlDocument.EndTag) {
863 HtmlDocument.EndTag endTag = (HtmlDocument.EndTag) n;
925 void addEndTag(HtmlDocument.EndTag t) {
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlTreeBuilder.java19 import com.google.android.mail.common.html.parser.HtmlDocument.EndTag;
85 EndTag end = HtmlDocument.createEndTag(element);
95 public void visitEndTag(HtmlDocument.EndTag t) {
146 HtmlDocument.EndTag endTag = HtmlDocument.createEndTag(element);
231 void seeEndTag(HtmlDocument.EndTag endTag) {
H A DHtmlDocument.java138 public static EndTag createEndTag(HTML.Element element) {
143 * @see HtmlDocument.EndTag#EndTag(HTML.Element, String)
145 public static EndTag createEndTag(HTML.Element element, String originalHtml) {
146 return new EndTag(element, originalHtml);
695 * EndTag is a closing HTML tag.
697 public static class EndTag extends Node { class in class:HtmlDocument
711 private EndTag(HTML.Element element, String originalHtml) { method in class:HtmlDocument.EndTag
912 EndTag visitEndTag(EndTag
[all...]
H A DHtmlTree.java234 (node instanceof HtmlDocument.EndTag &&
235 ((HtmlDocument.EndTag) node).getElement().breaksFlow())) {
282 if (node instanceof HtmlDocument.EndTag) {
284 ((HtmlDocument.EndTag) node).getElement())) {
341 } else if (node instanceof HtmlDocument.EndTag) {
939 } else if (n instanceof HtmlDocument.EndTag) {
942 HtmlDocument.EndTag endTag = (HtmlDocument.EndTag) n;
1009 void addEndTag(HtmlDocument.EndTag t) {
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DHtmlUtils.java95 } else if (n instanceof HtmlDocument.EndTag) {
96 handleEnd((HtmlDocument.EndTag) n);
122 protected void handleEnd(HtmlDocument.EndTag tag) {

Completed in 116 milliseconds