Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/text/
DDecodeEscapeSequences.h66 …UChar codeUnit = (toASCIIHexValue(run[2]) << 12) | (toASCIIHexValue(run[3]) << 8) | (toASCIIHexVal… in decodeRun()
113 *p++ = (toASCIIHexValue(run[1]) << 4) | toASCIIHexValue(run[2]); in decodeRun()
DQuotedPrintable.cpp151 out.append(static_cast<char>(toASCIIHexValue(upperCharacter, lowerCharacter))); in quotedPrintableDecode()
/external/chromium_org/third_party/WebKit/Source/wtf/
DASCIICType.h134 template<typename CharType> inline int toASCIIHexValue(CharType c) in toASCIIHexValue() function
140 template<typename CharType> inline int toASCIIHexValue(CharType upperValue, CharType lowerValue) in toASCIIHexValue() function
143 return ((toASCIIHexValue(upperValue) << 4) & 0xF0) | toASCIIHexValue(lowerValue); in toASCIIHexValue()
178 using WTF::toASCIIHexValue;
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLElement.cpp852 …return makeRGB(toASCIIHexValue(digitBuffer[0]), toASCIIHexValue(digitBuffer[1]), toASCIIHexValue(d… in parseColorStringWithCrazyLegacyRules()
873 int redValue = toASCIIHexValue(digitBuffer[redIndex], digitBuffer[redIndex + 1]); in parseColorStringWithCrazyLegacyRules()
874 int greenValue = toASCIIHexValue(digitBuffer[greenIndex], digitBuffer[greenIndex + 1]); in parseColorStringWithCrazyLegacyRules()
875 int blueValue = toASCIIHexValue(digitBuffer[blueIndex], digitBuffer[blueIndex + 1]); in parseColorStringWithCrazyLegacyRules()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGParserUtilities.cpp315 startRange = (startRange << 4) | toASCIIHexValue(*ptr); in parseUnicodeRange()
334 endRange = (endRange << 4) | toASCIIHexValue(*ptr); in parseUnicodeRange()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DColor.cpp137 value |= toASCIIHexValue(name[i]); in parseHexColorInternal()
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DCSSTokenizer-in.cpp412 unicode = (unicode << 4) + toASCIIHexValue(*src++); in parseEscape()