Searched defs:toASCIIHexValue (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DASCIICType.h134 template<typename CharType> inline int toASCIIHexValue(CharType c) function in namespace:WTF
140 template<typename CharType> inline int toASCIIHexValue(CharType upperValue, CharType lowerValue) function in namespace:WTF
143 return ((toASCIIHexValue(upperValue) << 4) & 0xF0) | toASCIIHexValue(lowerValue);
178 using WTF::toASCIIHexValue;

Completed in 268 milliseconds