Searched defs:IsDigit (Results 1 – 10 of 10) sorted by relevance
35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); } in IsDigit() function
181 static bool IsDigit(char ch) { return ch >= '0' && ch <= '9'; } in IsDigit() function
46 bool IsDigit(uint32_t word) { in IsDigit() function
53 bool UniLibBase::IsDigit(char32 codepoint) const { in IsDigit() function in libtextclassifier3::UniLibBase
505 bool IsDigit(char32 codepoint) { in IsDigit() function
464 static bool IsDigit(const char d) { in IsDigit() function
132 bool IsDigit(const std::string& str, size_t min, size_t max) { in IsDigit() function
487 INLINE bool IsDigit(int c) { in IsDigit() function
196 #define IsDigit(X) isdigit((unsigned char)X) macro
190 #define IsDigit(X) isdigit((unsigned char)X) macro