Home | History | Annotate | Download | only in src

Lines Matching refs:IsAsciiDigit

616 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
637 case 'd': return IsAsciiDigit(ch);
638 case 'D': return !IsAsciiDigit(ch);