Home | History | Annotate | Download | only in internal

Lines Matching defs:IsXDigit

1952 inline bool IsXDigit(char ch) {
1953 return isxdigit(static_cast<unsigned char>(ch)) != 0;
1955 inline bool IsXDigit(wchar_t ch) {
1957 return ch == low_byte && isxdigit(low_byte) != 0;