Home | History | Annotate | Download | only in v1

Lines Matching refs:START_TAG

46  * <dt><a href="#START_TAG">START_TAG</a><dd> An XML start tag was read.
95 * } else if(eventType == XmlPullParser.START_TAG) {
131 * @see #START_TAG
193 int START_TAG = 2;
320 * such as START_TAG or TEXT to
321 * to a string. For example, the value of TYPES[START_TAG] is
322 * the string "START_TAG".
332 "START_TAG",
546 * prefixes and URIs that were declared on corresponding START_TAG.
572 * in the corresponding START_TAG are still accessible
582 * in corresponding START_TAG are still accessible even though they are not in scope
741 // START_TAG / END_TAG shared methods
748 * The current event must be START_TAG or END_TAG; otherwise,
754 * For START_TAG or END_TAG events, the (local) name of the current
758 * If the current event is not START_TAG, END_TAG, or ENTITY_REF,
772 * is not START_TAG or END_TAG, null is returned.
777 * Returns true if the current event is START_TAG and the tag
780 * <p><b>NOTE:</b> if the parser is not on START_TAG, an exception
786 // START_TAG Attributes retrieval methods
790 * -1 if the current event type is not START_TAG
805 * or the current event type is not START_TAG.
828 * or current event type is not START_TAG.
840 * or current event type is not START_TAG.
869 * or current event type is not START_TAG.
886 * If current event type is not START_TAG then IndexOutOfBoundsException will be thrown.
906 * Returns the type of the current event (START_TAG, END_TAG, TEXT, etc.)
922 * with two separate events: START_TAG, END_TAG - it must be so to preserve
927 * @see #START_TAG
950 * and. Also when this feature is enabled exact content of START_TAG, END_TAG,
957 * <dt>START_TAG<dd>null unless FEATURE_XML_ROUNDTRIP
1015 * @see #START_TAG
1051 * If current event is START_TAG then if next element is TEXT then element content is returned
1062 * p.requireEvent(p.START_TAG, "", "tag");
1072 * if(getEventType() != START_TAG) {
1074 * "parser must be on START_TAG to read next text", this, null);
1089 * "parser must be on START_TAG or TEXT to read text", this, null);
1096 * Call next() and return event if it is START_TAG or END_TAG
1106 * if (eventType != START_TAG &amp;&amp; eventType != END_TAG) {