Lines Matching refs:parser
27 * Implements the layout parser with rules for internal layouts and partner layouts.
80 protected void parseContainerAndScreen(XmlResourceParser parser, long[] out) {
82 String strContainer = getAttributeValue(parser, ATTR_CONTAINER);
86 out[1] = Long.parseLong(getAttributeValue(parser, ATTR_SCREEN));
95 protected long invalidPackageOrClass(XmlResourceParser parser) {
96 final String uri = getAttributeValue(parser, ATTR_URI);
180 * Shortcut parser which allows any uri and not just web urls.
189 protected Intent parseIntent(XmlResourceParser parser) {
192 uri = getAttributeValue(parser, ATTR_URI);
209 public long parseAndAdd(XmlResourceParser parser) throws XmlPullParserException,
211 final int groupDepth = parser.getDepth();
214 while ((type = parser.next()) != XmlPullParser.END_TAG ||
215 parser.getDepth() > groupDepth) {
219 final String fallback_item_name = parser.getName();
221 addedId = mChildParser.parseAndAdd(parser);
232 * A parser which adds a folder whose contents come from partner apk.
237 public long parseAndAdd(XmlResourceParser parser) throws XmlPullParserException,
263 public long parseAndAdd(XmlResourceParser parser) throws XmlPullParserException,
265 final int resId = getAttributeResourceValue(parser, ATTR_FOLDER_ITEMS, 0);
267 parser = mSourceRes.getXml(resId);
268 beginDocument(parser, TAG_FOLDER);
270 return super.parseAndAdd(parser);