Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fromScope (0.17 sec)

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

          // ',' represents a leaf node, which represents a private entry in the map.
          String domain = DIRECT_JOINER.join(stack);
    
          if (domain.length() > 0) {
            builder.put(domain, PublicSuffixType.fromCode(c));
          }
        }
    
        idx++;
    
        if (c != '?' && c != ',') {
          while (idx < encodedLen) {
            // Read all the children
            idx += doParseTrieToBuilder(stack, encoded, idx, builder);
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Oct 13 19:20:43 GMT 2022
    - 4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java

        return leafNodeCode;
      }
    
      char getInnerNodeCode() {
        return innerNodeCode;
      }
    
      /** Returns a PublicSuffixType of the right type according to the given code */
      static PublicSuffixType fromCode(char code) {
        for (PublicSuffixType value : values()) {
          if (value.getInnerNodeCode() == code || value.getLeafNodeCode() == code) {
            return value;
          }
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 16 19:54:45 GMT 2020
    - 2K bytes
    - Viewed (0)
Back to top