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

  /external/chromium_org/third_party/WebKit/Source/wtf/
ASCIICType.h 134 template<typename CharType> inline int toASCIIHexValue(CharType c)
140 template<typename CharType> inline int toASCIIHexValue(CharType upperValue, CharType lowerValue)
143 return ((toASCIIHexValue(upperValue) << 4) & 0xF0) | toASCIIHexValue(lowerValue);
178 using WTF::toASCIIHexValue;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
DecodeEscapeSequences.h 66 UChar codeUnit = (toASCIIHexValue(run[2]) << 12) | (toASCIIHexValue(run[3]) << 8) | (toASCIIHexValue(run[4]) << 4) | toASCIIHexValue(run[5]);
113 *p++ = (toASCIIHexValue(run[1]) << 4) | toASCIIHexValue(run[2]);
QuotedPrintable.cpp 151 out.append(static_cast<char>(toASCIIHexValue(upperCharacter, lowerCharacter)));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGParserUtilities.cpp 315 startRange = (startRange << 4) | toASCIIHexValue(*ptr);
334 endRange = (endRange << 4) | toASCIIHexValue(*ptr);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Color.cpp 137 value |= toASCIIHexValue(name[i]);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSTokenizer-in.cpp 412 unicode = (unicode << 4) + toASCIIHexValue(*src++);
    [all...]

Completed in 675 milliseconds