Searched refs:firstEscape (Results 1 – 1 of 1) sorted by relevance
842 int firstEscape = string.indexOf('%'); in unescape() local843 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()