Searched defs:IsDigit (Results 1 - 5 of 5) sorted by relevance

/external/sonivox/arm-fm-22k/lib_src/
H A Deas_ctype.h35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); } function
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_ctype.h35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); } function
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_ctype.h35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); } function
/external/gtest/src/
H A Dgtest-port.cc143 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
164 case 'd': return IsDigit(ch);
165 case 'D': return !IsDigit(ch);
/external/v8/test/cctest/
H A Dtest-regexp.cc408 static bool IsDigit(uc16 c) { function
414 return !IsDigit(c);
463 TestCharacterClassEscapes('d', IsDigit);

Completed in 161 milliseconds