- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for escapeSlow (0.05 seconds)
-
android/guava/src/com/google/common/escape/UnicodeEscaper.java
*/ @Override public String escape(String string) { checkNotNull(string); int end = string.length(); int index = nextEscapeIndex(string, 0, end); return index == end ? string : escapeSlow(string, index); } /** * Scans a sub-sequence of characters from a given {@link CharSequence}, returning the index of * the next character that requires escaping. *
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Feb 13 15:45:16 GMT 2025 - 13.2K bytes - Click Count (0)