Searched defs:endTag (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DAbstractSyncParser.java116 * @param endTag the tag we end with
119 public void skipParser(int endTag) throws IOException { argument
120 while (nextTag(endTag) != END) {
H A DProvisionParser.java372 * @param endTag the tag whose children we're walking through
376 private boolean specifiesApplications(int endTag) throws IOException { argument
378 while (nextTag(endTag) != END) {
H A DParser.java87 public int endTag = NOT_ENDED; field in class:Parser
297 endTag = endingTag &= Tags.PAGE_MASK;
304 } else if (type == END && startTag == endTag) {
309 if (endTag == START_DOCUMENT) {
405 startTag = endTag = startTagArray[depth];
H A DEmailSyncParser.java706 * @param endTag the tag we end with
709 public void messageUpdateParser(int endTag) throws IOException { argument
713 while (nextTag(endTag) != END) {
H A DEmailSyncAdapter.java1067 * @param endTag the tag we end with
1070 public void failedUpdateParser(int endTag) throws IOException { argument
1073 while (nextTag(endTag) != END) {
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlTreeBuilder.java146 HtmlDocument.EndTag endTag = HtmlDocument.createEndTag(element);
147 tableFixer.seeEndTag(endTag);
148 tree.addEndTag(endTag);
231 void seeEndTag(HtmlDocument.EndTag endTag) { argument
232 HTML.Element element= endTag.getElement();
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlTreeBuilder.java146 HtmlDocument.EndTag endTag = HtmlDocument.createEndTag(element);
147 tableFixer.seeEndTag(endTag);
148 tree.addEndTag(endTag);
231 void seeEndTag(HtmlDocument.EndTag endTag) { argument
232 HTML.Element element= endTag.getElement();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardBuilder.java205 private void endTag(final String format, final Object ... args) { method in class:KeyboardBuilder
333 if (DEBUG) endTag("</%s>", tag);
384 if (DEBUG) endTag("</%s>", tag);
607 if (DEBUG) endTag("</%s>", TAG_SWITCH);

Completed in 301 milliseconds