Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for NumChildren (0.11 seconds)

  1. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java

        for (int i = partsSize - 1; i >= 0; i--) {
          // Decode the current node.
          int firstChild = trieData.charAt(nodeIndex * NODE_SIZE + 1);
          int numChildren = trieData.charAt(nodeIndex * NODE_SIZE + 2) & CHILDREN_MASK;
    
          nodeIndex = findChild(firstChild, numChildren, labels.get(i));
          if (nodeIndex == -1) {
            break;
          }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 9.1K bytes
    - Click Count (0)
Back to Top