Home | History | Annotate | Download | only in src

Lines Matching refs:IsAsciiDigit

593 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
614 case 'd': return IsAsciiDigit(ch);
615 case 'D': return !IsAsciiDigit(ch);