Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Richards (0.3 sec)

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

            // UTF-16. See: http://en.wikipedia.org/wiki/UTF-16/UCS-2
            if (hiChars == null && loChars == null) {
              // We expect this to be the common code path for most escapers.
              return null;
            }
            // Combine the characters and/or escaped sequences into a single array.
            int hiCount = hiChars != null ? hiChars.length : 1;
            int loCount = loChars != null ? loChars.length : 1;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 10.5K bytes
    - Viewed (0)
Back to top