HomeSort by relevance Sort by last modified time
    Searched defs:childMap (Results 1 - 14 of 14) sorted by null

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