Home
last modified time | relevance | path

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

/libcore/xml/src/main/java/com/android/org/kxml2/io/
DKXmlSerializer.java44 private int[] nspCounts = new int[4]; field in KXmlSerializer
100 for (int i = nspCounts[depth - 1]; i < nspCounts[depth]; i++) { in check()
113 if (nspCounts.length <= depth + 1) { in check()
115 System.arraycopy(nspCounts, 0, hlp, 0, depth + 1); in check()
116 nspCounts = hlp; in check()
119 nspCounts[depth + 1] = nspCounts[depth]; in check()
238 for (int i = nspCounts[depth + 1] * 2 - 2; in getPrefix()
245 j < nspCounts[depth + 1] * 2; in getPrefix()
267 for (int i = nspCounts[depth + 1] * 2 - 2; in getPrefix()
325 int pos = (nspCounts[depth + 1]++) << 1; in setPrefix()
[all …]
DKXmlParser.java135 private int[] nspCounts = new int[4]; field in KXmlParser
215 int j = (nspCounts[depth]++) << 1; in adjustNsp()
1144 if (depth >= nspCounts.length) { in parseStartTag()
1146 System.arraycopy(nspCounts, 0, bigger, 0, nspCounts.length); in parseStartTag()
1147 nspCounts = bigger; in parseStartTag()
1150 nspCounts[depth] = nspCounts[depth - 1]; in parseStartTag()
1833 return nspCounts[depth]; in getNamespaceCount()