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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JSONParser.cpp 258 inline int hexToInt(CharType c)
304 c = (hexToInt(*start) << 4) +
305 hexToInt(*(start + 1));
309 c = (hexToInt(*start) << 12) +
310 (hexToInt(*(start + 1)) << 8) +
311 (hexToInt(*(start + 2)) << 4) +
312 hexToInt(*(start + 3));
  /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/src/com/android/exchange/utility/
UriCodec.java 74 int d1 = hexToInt(uri.charAt(i + 1));
75 int d2 = hexToInt(uri.charAt(i + 2));
181 int d1 = hexToInt(s.charAt(i + 1));
182 int d2 = hexToInt(s.charAt(i + 2));
207 private static int hexToInt(char c) {
  /external/chromium_org/third_party/sqlite/src/src/
test_malloc.c 272 static int hexToInt(int h){
287 v = hexToInt(*z++);
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 884 milliseconds