Lines Matching defs:endTag

255             out.endTag(null, "null");
266 out.endTag(null, "map");
318 out.endTag(null, "null");
334 out.endTag(null, "list");
341 out.endTag(null, "null");
354 out.endTag(null, "set");
375 out.endTag(null, "null");
398 out.endTag(null, "byte-array");
420 out.endTag(null, "null");
435 out.endTag(null, "item");
438 out.endTag(null, "int-array");
459 out.endTag(null, "null");
474 out.endTag(null, "item");
477 out.endTag(null, "long-array");
498 out.endTag(null, "null");
513 out.endTag(null, "item");
516 out.endTag(null, "double-array");
537 out.endTag(null, "null");
552 out.endTag(null, "item");
555 out.endTag(null, "string-array");
604 out.endTag(null, "null");
612 out.endTag(null, "string");
657 out.endTag(null, "string");
671 out.endTag(null, typeStr);
746 * @param endTag Name of the tag that will end the map, usually "map".
754 public static final HashMap<String, ?> readThisMapXml(XmlPullParser parser, String endTag,
756 return readThisMapXml(parser, endTag, name, null);
765 * @param endTag Name of the tag that will end the map, usually "map".
774 public static final HashMap<String, ?> readThisMapXml(XmlPullParser parser, String endTag,
786 if (parser.getName().equals(endTag)) {
790 "Expected " + endTag + " end tag at: " + parser.getName());
796 "Document ended before " + endTag + " end tag");
805 * @param endTag Name of the tag that will end the list, usually "list".
813 public static final ArrayList readThisListXml(XmlPullParser parser, String endTag,
815 return readThisListXml(parser, endTag, name, null);
824 * @param endTag Name of the tag that will end the list, usually "list".
832 private static final ArrayList readThisListXml(XmlPullParser parser, String endTag,
844 if (parser.getName().equals(endTag)) {
848 "Expected " + endTag + " end tag at: " + parser.getName());
854 "Document ended before " + endTag + " end tag");
863 * @param endTag Name of the tag that will end the set, usually "set".
874 public static final HashSet readThisSetXml(XmlPullParser parser, String endTag, String[] name)
876 return readThisSetXml(parser, endTag, name, null);
885 * @param endTag Name of the tag that will end the set, usually "set".
897 private static final HashSet readThisSetXml(XmlPullParser parser, String endTag, String[] name,
908 if (parser.getName().equals(endTag)) {
912 "Expected " + endTag + " end tag at: " + parser.getName());
918 "Document ended before " + endTag + " end tag");
927 * @param endTag Name of the tag that will end the list, usually "list".
936 String endTag, String[] name)
973 if (parser.getName().equals(endTag)) {
979 "Expected " + endTag + " end tag at: "
987 "Document ended before " + endTag + " end tag");
996 * @param endTag Name of the tag that will end the list, usually "list".
1005 String endTag, String[] name)
1036 if (parser.getName().equals(endTag)) {
1041 throw new XmlPullParserException("Expected " + endTag + " end tag at: " +
1048 throw new XmlPullParserException("Document ended before " + endTag + " end tag");
1057 * @param endTag Name of the tag that will end the list, usually "double-array".
1065 public static final double[] readThisDoubleArrayXml(XmlPullParser parser, String endTag,
1096 if (parser.getName().equals(endTag)) {
1101 throw new XmlPullParserException("Expected " + endTag + " end tag at: " +
1108 throw new XmlPullParserException("Document ended before " + endTag + " end tag");
1117 * @param endTag Name of the tag that will end the list, usually "string-array".
1125 public static final String[] readThisStringArrayXml(XmlPullParser parser, String endTag,
1156 if (parser.getName().equals(endTag)) {
1161 throw new XmlPullParserException("Expected " + endTag + " end tag at: " +
1168 throw new XmlPullParserException("Document ended before " + endTag + " end tag");