Lines Matching refs:BASE
60 template <typename CHAR, int BASE, bool BASE_LTE_10>
64 template <typename CHAR, int BASE>
65 class BaseCharToDigit<CHAR, BASE, true> {
68 if (c >= '0' && c < '0' + BASE) {
77 template <typename CHAR, int BASE>
78 class BaseCharToDigit<CHAR, BASE, false> {
83 } else if (c >= 'a' && c < 'a' + BASE - 10) {
85 } else if (c >= 'A' && c < 'A' + BASE - 10) {
94 template <int BASE, typename CHAR>
96 return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
247 template <typename ITERATOR, typename VALUE, int BASE>
254 static const int kBase = BASE;
285 template <typename VALUE, int BASE>
289 BASE> {};
297 template <typename VALUE, int BASE>
301 BASE> {};