Lines Matching refs:Char
124 template <class Char> inline Char ToLowerASCII(Char c) { in ToLowerASCII()
130 template <class Char> inline Char ToUpperASCII(Char c) { in ToUpperASCII()
136 template<typename Char> struct CaseInsensitiveCompare {
138 bool operator()(Char x, Char y) const { in operator()
145 template<typename Char> struct CaseInsensitiveCompareASCII {
147 bool operator()(Char x, Char y) const { in operator()
380 template <typename Char>
381 inline bool IsAsciiWhitespace(Char c) { in IsAsciiWhitespace()
384 template <typename Char>
385 inline bool IsAsciiAlpha(Char c) { in IsAsciiAlpha()
388 template <typename Char>
389 inline bool IsAsciiDigit(Char c) { in IsAsciiDigit()
393 template <typename Char>
394 inline bool IsHexDigit(Char c) { in IsHexDigit()
400 template <typename Char>
401 inline Char HexDigitToInt(Char c) { in HexDigitToInt()