Lines Matching refs:CHAR
60 template <typename CHAR, int BASE, bool BASE_LTE_10>
64 template <typename CHAR, int BASE>
65 class BaseCharToDigit<CHAR, BASE, true> {
67 static bool Convert(CHAR c, uint8_t* digit) {
77 template <typename CHAR, int BASE>
78 class BaseCharToDigit<CHAR, BASE, false> {
80 static bool Convert(CHAR c, uint8_t* digit) {
94 template <int BASE, typename CHAR>
95 bool CharToDigit(CHAR c, uint8_t* digit) {
96 return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
103 template <typename CHAR>
120 template <typename CHAR>
121 bool LocalIsWhitespace(CHAR c) {
122 return WhitespaceHelper<CHAR>::Invoke(c);