Lines Matching defs:xpp
65 XmlPullParser xpp = getXmlPullParser();
67 xpp.setInput(new StringReader(xml));
68 int eventType = xpp.getEventType();
72 LOG.finest("Start tag: " + xpp.getName());
75 eventType = xpp.next();
79 String prefix = xpp.getPrefix();
83 String uri = xpp.getNamespace();
84 String localName = xpp.getName();
102 for (int idx=0; idx < xpp.getAttributeCount(); idx++) {
103 String attrURI = xpp.getAttributeNamespace(idx);
105 attrURI = xpp.getNamespace(null);
107 String attrPrefix = xpp.getAttributePrefix(idx);
111 String attrLN = xpp.getAttributeName(idx);
112 String attrVal = xpp.getAttributeValue(idx);