Searched defs:IsDigit (Results 1 - 22 of 22) 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.cc174 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
195 case 'd': return IsDigit(ch);
196 case 'D': return !IsDigit(ch);
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/base/third_party/symbolize/
H A Ddemangle.cc290 static bool IsDigit(char c) { function
309 if (str[i] != '.' || !IsDigit(str[i + 1])) {
313 while (IsDigit(str[i])) {
636 if (IsDigit(*p)) {
657 if (!IsDigit(*p) && !(*p >= 'a' && *p <= 'f')) {
673 if (!IsDigit(*p) && !(*p >= 'A' && *p <= 'Z')) {
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc446 static bool IsDigit(uc16 c) { function
452 return !IsDigit(c);
491 TestCharacterClassEscapes('d', IsDigit);
/external/pdfium/fpdfsdk/src/javascript/
H A DPublicMethods.cpp141 else if (!IsDigit(c))
151 FX_BOOL CJS_PublicMethods::IsDigit(wchar_t ch) function in class:CJS_PublicMethods
156 FX_BOOL CJS_PublicMethods::IsDigit(char ch) function in class:CJS_PublicMethods
168 return (IsDigit(ch) || IsAlphabetic(ch));
176 return IsDigit(c_Change);
317 if (IsDigit(c))
487 if (IsDigit((wchar_t)c))
542 if (IsDigit((wchar_t)c))
1383 if (!IsDigit(*it))
2309 if (IsDigit((wchar_
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h1517 inline bool IsDigit(char ch) { function in namespace:testing::internal
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2091 static IsDigitOpt IsDigit; member in namespace:llvm
2196 return &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.cpp449 static FX_BOOL IsDigit(FX_DWORD word) function
573 if ((IsLatin(prevWord) || IsDigit(prevWord)) && (IsLatin(curWord) || IsDigit(curWord))) {
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h2155 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.c97 #define IsDigit(X) isdigit((unsigned char)X) macro
319 if( !IsDigit(*z) ){
324 while( IsDigit(*z) ){ z++; }
327 if( !IsDigit(*z) ) return 0;
328 while( IsDigit(*z) ){ z++; }
334 if( !IsDigit(*z) ) return 0;
335 while( IsDigit(*z) ){ z++; }
1828 while( IsDigit(zArg[0]) ){
/external/sqlite/dist/
H A Dshell.c102 #define IsDigit(X) isdigit((unsigned char)X) macro
324 if( !IsDigit(*z) ){
329 while( IsDigit(*z) ){ z++; }
332 if( !IsDigit(*z) ) return 0;
333 while( IsDigit(*z) ){ z++; }
339 if( !IsDigit(*z) ) return 0;
340 while( IsDigit(*z) ){ z++; }
1848 while( IsDigit(zArg[0]) ){
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2772 inline bool IsDigit(char ch) { function in namespace:std::tr1
/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 5009 milliseconds