Searched refs:nspCounts (Results 1 – 2 of 2) sorted by relevance
45 private int[] nspCounts = new int[4]; field in KXmlSerializer118 for (int i = nspCounts[depth - 1]; i < nspCounts[depth]; i++) { in check()131 if (nspCounts.length <= depth + 1) { in check()133 System.arraycopy(nspCounts, 0, hlp, 0, depth + 1); in check()134 nspCounts = hlp; in check()137 nspCounts[depth + 1] = nspCounts[depth]; in check()256 for (int i = nspCounts[depth + 1] * 2 - 2; in getPrefix()263 j < nspCounts[depth + 1] * 2; in getPrefix()285 for (int i = nspCounts[depth + 1] * 2 - 2; in getPrefix()343 int pos = (nspCounts[depth + 1]++) << 1; in setPrefix()[all …]
135 private int[] nspCounts = new int[4]; field in KXmlParser215 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()