Searched refs:toASCIIHexValue (Results 1 – 7 of 7) sorted by relevance
66 …UChar codeUnit = (toASCIIHexValue(run[2]) << 12) | (toASCIIHexValue(run[3]) << 8) | (toASCIIHexVal… in decodeRun()113 *p++ = (toASCIIHexValue(run[1]) << 4) | toASCIIHexValue(run[2]); in decodeRun()
151 out.append(static_cast<char>(toASCIIHexValue(upperCharacter, lowerCharacter))); in quotedPrintableDecode()
134 template<typename CharType> inline int toASCIIHexValue(CharType c) in toASCIIHexValue() function140 template<typename CharType> inline int toASCIIHexValue(CharType upperValue, CharType lowerValue) in toASCIIHexValue() function143 return ((toASCIIHexValue(upperValue) << 4) & 0xF0) | toASCIIHexValue(lowerValue); in toASCIIHexValue()178 using WTF::toASCIIHexValue;
852 …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()
315 startRange = (startRange << 4) | toASCIIHexValue(*ptr); in parseUnicodeRange()334 endRange = (endRange << 4) | toASCIIHexValue(*ptr); in parseUnicodeRange()
137 value |= toASCIIHexValue(name[i]); in parseHexColorInternal()
412 unicode = (unicode << 4) + toASCIIHexValue(*src++); in parseEscape()