Home | History | Annotate | Download | only in gtest

Lines Matching defs:IsXDigit

2784 inline bool IsXDigit(char ch) {
2785 return isxdigit(static_cast<unsigned char>(ch)) != 0;
2787 inline bool IsXDigit(wchar_t ch) {
2789 return ch == low_byte && isxdigit(low_byte) != 0;