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

/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java48 private int[] nspCounts = new int[4]; field in class:KXmlSerializer
69 for (int i = nspCounts[depth - 1]; i < nspCounts[depth]; i++) {
83 if (nspCounts.length <= depth + 1) {
85 System.arraycopy(nspCounts, 0, hlp, 0, depth + 1);
86 nspCounts = hlp;
89 nspCounts[depth + 1] = nspCounts[depth];
90 // nspCounts[depth + 2] = nspCounts[dept
[all...]
H A DKXmlParser.java135 private int[] nspCounts = new int[4]; field in class:KXmlParser
212 int j = (nspCounts[depth]++) << 1;
1127 if (depth >= nspCounts.length) {
1129 System.arraycopy(nspCounts, 0, bigger, 0, nspCounts.length);
1130 nspCounts = bigger;
1133 nspCounts[depth] = nspCounts[depth - 1];
1812 return nspCounts[depth];

Completed in 93 milliseconds