Home | History | Annotate | Download | only in gtest

Lines Matching defs:IsXDigit

3555 inline bool IsXDigit(char ch) {
3556 return isxdigit(static_cast<unsigned char>(ch)) != 0;
3558 inline bool IsXDigit(wchar_t ch) {
3560 return ch == low_byte && isxdigit(low_byte) != 0;