Searched defs:IsAsciiDigit (Results 1 – 6 of 6) sorted by relevance
284 inline bool IsAsciiDigit(Char c) { in IsAsciiDigit() function
117 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } in IsAsciiDigit() function
732 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function
748 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function
776 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function
115165 static bool IsAsciiDigit(char16_t aChar) { return NS_IsAsciiDigit(aChar); } in IsAsciiDigit() function in nsCRT