Lines Matching refs:END_TAG

50  * <dt><a href="#END_TAG">END_TAG</a><dd> An end tag was read
97 * } else if(eventType == XmlPullParser.END_TAG) {
134 * @see #END_TAG
210 int END_TAG = 3;
334 "END_TAG",
545 * <p><b>NOTE:</b> when parser is on END_TAG then it is allowed to call
571 * <p><b>Please note:</b> when the parser is on an END_TAG,
582 * <p><b>NOTE:</b> when parser is on END_TAG then namespace prefixes that were declared
742 // START_TAG / END_TAG shared methods
749 * The current event must be START_TAG or END_TAG; otherwise,
755 * For START_TAG or END_TAG events, the (local) name of the current
759 * If the current event is not START_TAG, END_TAG, or ENTITY_REF,
773 * is not START_TAG or END_TAG, null is returned.
907 * Returns the type of the current event (START_TAG, END_TAG, TEXT, etc.)
923 * with two separate events: START_TAG, END_TAG - it must be so to preserve
930 * @see #END_TAG
951 * and. Also when this feature is enabled exact content of START_TAG, END_TAG,
960 * <dt>END_TAG<dd>null unless FEATURE_XML_ROUNDTRIP
1018 * @see #END_TAG
1053 * or if next event is END_TAG then empty string is returned, otherwise exception is thrown.
1054 * After calling this function successfully parser will be positioned on END_TAG.
1065 * p.requireEvent(p.END_TAG, "", "tag");
1081 * if(eventType != END_TAG) {
1083 * "event TEXT it must be immediately followed by END_TAG", this, null);
1086 * } else if(eventType == END_TAG) {
1095 * android.util.Xml} did not always advance to the END_TAG event when this method was called.
1098 * if (xpp.getEventType() != XmlPullParser.END_TAG) {
1106 * Call next() and return event if it is START_TAG or END_TAG
1116 * if (eventType != START_TAG &amp;&amp; eventType != END_TAG) {