Searched refs:escaped (Results 1 – 9 of 9) sorted by relevance
467 static String unescape(String escaped) throws IOException { in unescape() argument471 int finish = escaped.indexOf('\\'); in unescape()473 return escaped; in unescape()476 StringBuilder result = new StringBuilder(escaped.length()); in unescape()478 if (finish >= escaped.length() - 1) { in unescape()480 throw new IOException("Unexpected \\ in: " + escaped); in unescape()482 result.append(escaped, start, finish); in unescape()483 switch (escaped.charAt(finish + 1)) { in unescape()494 throw new IOException("Bad escape in: " + escaped); in unescape()498 finish = escaped.indexOf('\\', start); in unescape()[all …]
46 bool escaped = false; in text() local49 if (escaped) { in text()50 escaped = false; in text()54 escaped = true; in text()
99 bool escaped = false; in Text() local102 if (escaped) { in Text()103 escaped = false; in Text()107 escaped = true; in Text()
153 String escaped = result.substring(offset+2, offset+6); in decode() local156 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after); in decode()
227 final boolean escaped = (c == '\\'); in matchGlobPattern()228 if (escaped) { in matchGlobPattern()234 if (!escaped && c == '.') { in matchGlobPattern()
1019 char escaped = buffer[pos++]; in readEscapeCharacter() local1020 switch (escaped) { in readEscapeCharacter()1048 return escaped; in readEscapeCharacter()
25 - Fixed issue where escaped unicode characters would generate malformed UTF-8. (bug 62839202)
75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
32663 HSPLsun/security/x509/X500Name;->escaped(IILjava/lang/String;)Z