Home
last modified time | relevance | path

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

/external/owasp/sanitizer/src/main/org/owasp/html/
DTrie.java45 private final char[] childMap; field in Trie
76 this.childMap = ZERO_CHARS; in Trie()
96 this.childMap = new char[childCount]; in Trie()
104 childMap[childIndex] = lastCh; in Trie()
111 childMap[childIndex] = lastCh; in Trie()
125 int i = Arrays.binarySearch(childMap, ch); in lookup()
145 return Arrays.binarySearch(childMap, ch) >= 0; in contains()
167 for (int i = 0, n = childMap.length; i < n; ++i) { in toStringList()
168 children[i].toStringList(prefix + childMap[i], strings); in toStringList()
182 for (int i = 0; i < childMap.length; ++i) { in toStringBuilder()
[all …]