hexToInt          304 Source/core/inspector/JSONParser.cpp             c = (hexToInt(*start) << 4) +
hexToInt          305 Source/core/inspector/JSONParser.cpp                 hexToInt(*(start + 1));
hexToInt          309 Source/core/inspector/JSONParser.cpp             c = (hexToInt(*start) << 12) +
hexToInt          310 Source/core/inspector/JSONParser.cpp                 (hexToInt(*(start + 1)) << 8) +
hexToInt          311 Source/core/inspector/JSONParser.cpp                 (hexToInt(*(start + 2)) << 4) +
hexToInt          312 Source/core/inspector/JSONParser.cpp                 hexToInt(*(start + 3));