Home | History | Annotate | Download | only in rssreader

Lines Matching defs:xpp

485 xpp = Xml.newPullParser();
486 xpp.setInput(in, null); // null = default to UTF-8
492 eventType = xpp.getEventType();
495 String tag = xpp.getName();
499 xpp.next(); // Skip to next element -- assume text is directly inside the tag
500 title = xpp.getText();
502 xpp.next();
503 link = xpp.getText();
505 xpp.next();
506 description = xpp.getText();
512 String tag = xpp.getName();
518 eventType = xpp.next();