Searched defs:IsDigit (Results 1 - 16 of 16) 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/protobuf/gtest/src/
H A Dgtest-port.cc183 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
204 case 'd': return IsDigit(ch);
205 case 'D': return !IsDigit(ch);
/external/mesa3d/src/mesa/program/
H A Dnvvertparse.c130 static GLboolean IsDigit(GLubyte b) function
177 while (str[i] && IsDigit(str[i])) {
187 while (str[i] && (IsLetter(str[i]) || IsDigit(str[i]))) {
312 if (IsDigit(token[1])) {
365 if (IsDigit(token[0])) {
397 if (IsDigit(token[0])) {
427 if (IsDigit(token[0])) {
484 if (IsDigit(token[0])) {
H A Dnvfragparse.c275 static GLboolean IsDigit(GLubyte b) function
322 while (str[i] && IsDigit(str[i])) {
332 while (str[i] && (IsLetter(str[i]) || IsDigit(str[i]))) {
720 if (IsDigit(token[1])) {
770 if (IsDigit(token[0])) {
1036 else if (IsDigit(token[0]) || token[0] == '-' || token[0] == '+' || token[0] == '.'){
1170 else if (IsDigit(token[0])) {
/external/pdfium/fpdfsdk/src/javascript/
H A DPublicMethods.cpp142 else if (!IsDigit(c))
152 FX_BOOL CJS_PublicMethods::IsDigit(wchar_t ch) function in class:CJS_PublicMethods
157 FX_BOOL CJS_PublicMethods::IsDigit(char ch) function in class:CJS_PublicMethods
169 return (IsDigit(ch) || IsAlphabetic(ch));
177 return IsDigit(c_Change);
306 if (IsDigit(c))
476 if (IsDigit((wchar_t)c))
531 if (IsDigit((wchar_t)c))
1370 if (!IsDigit(*it))
2279 if (IsDigit((wchar_
[all...]
/external/v8/test/cctest/
H A Dtest-regexp.cc446 static bool IsDigit(uc16 c) { function
452 return !IsDigit(c);
491 TestCharacterClassEscapes('d', IsDigit);
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h1527 inline bool IsDigit(char ch) { function in namespace:testing::internal
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h1517 inline bool IsDigit(char ch) { function in namespace:testing::internal
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_vt.cpp448 static FX_BOOL IsDigit(FX_DWORD word) function
572 if ((IsLatin(prevWord) || IsDigit(prevWord)) && (IsLatin(curWord) || IsDigit(curWord))) {
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1573 inline bool IsDigit(char ch) { function in namespace:testing::internal
/external/gtest/include/gtest/internal/
H A Dgtest-port.h1665 inline bool IsDigit(char ch) { function in namespace:testing::internal
/external/sqlite/dist/orig/
H A Dshell.c138 #define IsDigit(X) isdigit((unsigned char)X) macro
391 if( !IsDigit(*z) ){
396 while( IsDigit(*z) ){ z++; }
399 if( !IsDigit(*z) ) return 0;
400 while( IsDigit(*z) ){ z++; }
406 if( !IsDigit(*z) ) return 0;
407 while( IsDigit(*z) ){ z++; }
2047 while( IsDigit(zArg[0]) ){
/external/sqlite/dist/
H A Dshell.c144 #define IsDigit(X) isdigit((unsigned char)X) macro
397 if( !IsDigit(*z) ){
402 while( IsDigit(*z) ){ z++; }
405 if( !IsDigit(*z) ) return 0;
406 while( IsDigit(*z) ){ z++; }
412 if( !IsDigit(*z) ) return 0;
413 while( IsDigit(*z) ){ z++; }
2069 while( IsDigit(zArg[0]) ){
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2772 inline bool IsDigit(char ch) { function in namespace:std::tr1

Completed in 1312 milliseconds