Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/net/
DUriCodec.java55 int d1 = hexToInt(uri.charAt(i + 1)); in validate()
56 int d2 = hexToInt(uri.charAt(i + 2)); in validate()
165 && (d1 = hexToInt(s.charAt(i + 1))) != -1 in decode()
166 && (d2 = hexToInt(s.charAt(i + 2))) != -1) { in decode()
193 private static int hexToInt(char c) { in hexToInt() method in UriCodec