Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isSupplementaryCodePoint (0.08 sec)

  1. android/guava/src/com/google/common/escape/UnicodeEscaper.java

        int index = start;
        while (index < end) {
          int cp = codePointAt(csq, index, end);
          if (cp < 0 || escape(cp) != null) {
            break;
          }
          index += Character.isSupplementaryCodePoint(cp) ? 2 : 1;
        }
        return index;
      }
    
      /**
       * Returns the escaped form of a given literal string, starting at the given index. This method is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/escape/UnicodeEscaper.java

        int index = start;
        while (index < end) {
          int cp = codePointAt(csq, index, end);
          if (cp < 0 || escape(cp) != null) {
            break;
          }
          index += Character.isSupplementaryCodePoint(cp) ? 2 : 1;
        }
        return index;
      }
    
      /**
       * Returns the escaped form of a given literal string, starting at the given index. This method is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 13.2K bytes
    - Viewed (0)
Back to top