HomeSort by relevance Sort by last modified time
    Searched refs:hexToInt (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/libcore/net/
UriCodec.java 55 int d1 = hexToInt(uri.charAt(i + 1));
56 int d2 = hexToInt(uri.charAt(i + 2));
165 && (d1 = hexToInt(s.charAt(i + 1))) != -1
166 && (d2 = hexToInt(s.charAt(i + 2))) != -1) {
193 private static int hexToInt(char c) {
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
UriCodec.java 57 int d1 = hexToInt(uri.charAt(i + 1));
58 int d2 = hexToInt(uri.charAt(i + 2));
164 int d1 = hexToInt(s.charAt(i + 1));
165 int d2 = hexToInt(s.charAt(i + 2));
190 private static int hexToInt(char c) {
  /external/webkit/Source/WebCore/inspector/
InspectorValues.cpp 247 inline int hexToInt(UChar c)
292 c = (hexToInt(*start) << 4) +
293 hexToInt(*(start + 1));
297 c = (hexToInt(*start) << 12) +
298 (hexToInt(*(start + 1)) << 8) +
299 (hexToInt(*(start + 2)) << 4) +
300 hexToInt(*(start + 3));
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
PEMDecoder.java 33 private static int hexToInt(char c)
65 int hi = hexToInt(hex.charAt(i * 2));
66 int lo = hexToInt(hex.charAt((i * 2) + 1));

Completed in 197 milliseconds