Searched refs:getNamespaceCount (Results 1 - 5 of 5) sorted by relevance

/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlPullParser.java190 * @see #getNamespaceCount
550 * int nsStart = pp.getNamespaceCount(pp.getDepth()-1);
551 * int nsEnd = pp.getNamespaceCount(pp.getDepth());
564 int getNamespaceCount(int depth) throws XmlPullParserException; method in interface:XmlPullParser
599 * for (int i = getNamespaceCount(getDepth ())-1; i >= 0; i--) {
615 * @see #getNamespaceCount
/libcore/xml/src/main/java/org/xmlpull/v1/sax2/
H A DDriver.java374 (level > depth) ? pp.getNamespaceCount(depth) : 0;
375 //int countPrev = pp.getNamespaceCount(pp.getDepth() - 1);
376 final int count = pp.getNamespaceCount(depth + 1);
429 (level > depth) ? pp.getNamespaceCount(pp.getDepth()) : 0;
430 int count = pp.getNamespaceCount(pp.getDepth() - 1);
/libcore/luni/src/test/java/libcore/xml/
H A DPullParserTest.java601 assertEquals(0, parser.getNamespaceCount(0));
604 parser.getNamespaceCount(1);
643 parser.getNamespaceCount(2);
651 parser.getNamespaceCount(1);
655 assertEquals(0, parser.getNamespaceCount(0));
659 assertEquals(2, parser.getNamespaceCount(1));
678 assertEquals(3, parser.getNamespaceCount(2));
H A DXmlPullParserFactoryTest.java258 public int getNamespaceCount(int depth) throws XmlPullParserException { method in class:XmlPullParserFactoryTest.XmlPullParserStub
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java1829 public int getNamespaceCount(int depth) { method in class:KXmlParser
1852 for (int i = (getNamespaceCount(depth) << 1) - 2; i >= 0; i -= 2) {

Completed in 181 milliseconds