Searched refs:nspCounts (Results 1 - 2 of 2) sorted by relevance

/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java44 private int[] nspCounts = new int[4]; field in class:KXmlSerializer
100 for (int i = nspCounts[depth - 1]; i < nspCounts[depth]; i++) {
113 if (nspCounts.length <= depth + 1) {
115 System.arraycopy(nspCounts, 0, hlp, 0, depth + 1);
116 nspCounts = hlp;
119 nspCounts[depth + 1] = nspCounts[depth];
120 // nspCounts[depth + 2] = nspCounts[dept
[all...]
H A DKXmlParser.java135 private int[] nspCounts = new int[4]; field in class:KXmlParser
215 int j = (nspCounts[depth]++) << 1;
1144 if (depth >= nspCounts.length) {
1146 System.arraycopy(nspCounts, 0, bigger, 0, nspCounts.length);
1147 nspCounts = bigger;
1150 nspCounts[depth] = nspCounts[depth - 1];
1833 return nspCounts[depth];

Completed in 121 milliseconds