Home | History | Annotate | Download | only in settings

Lines Matching refs:xrp

213             XmlResourceParser xrp = context.getResources().getXml(R.xml.timezones);
214 while (xrp.next() != XmlResourceParser.START_TAG)
216 xrp.next();
217 while (xrp.getEventType() != XmlResourceParser.END_TAG) {
218 while (xrp.getEventType() != XmlResourceParser.START_TAG) {
219 if (xrp.getEventType() == XmlResourceParser.END_DOCUMENT) {
222 xrp.next();
224 if (xrp.getName().equals(XMLTAG_TIMEZONE)) {
225 String id = xrp.getAttributeValue(0);
226 String displayName = xrp.nextText();
229 while (xrp.getEventType() != XmlResourceParser.END_TAG) {
230 xrp.next();
232 xrp.next();
234 xrp.close();