HomeSort by relevance Sort by last modified time
    Searched refs:hexToInt (Results 1 - 5 of 5) 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));
162 int d1 = hexToInt(s.charAt(i + 1));
163 int d2 = hexToInt(s.charAt(i + 2));
188 private static int hexToInt(char c) {
  /packages/apps/Exchange/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/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]

Completed in 503 milliseconds