Home
last modified time | relevance | path

Searched refs:firstEscape (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/net/
DUrlQuerySanitizer.java842 int firstEscape = string.indexOf('%'); in unescape() local
843 if ( firstEscape < 0) { in unescape()
844 firstEscape = string.indexOf('+'); in unescape()
845 if (firstEscape < 0) { in unescape()
853 stringBuilder.append(string.substring(0, firstEscape)); in unescape()
854 for (int i = firstEscape; i < length; i++) { in unescape()