Searched refs:IsDigit (Results 1 - 25 of 41) sorted by relevance

12

/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
H A Deas_imelody.c480 if (IsDigit(c))
1258 else if (IsDigit(c))
1264 if (IsDigit(c))
1308 if (IsDigit(c))
1369 else if (IsDigit(c))
1538 if (!IsDigit(c))
H A Deas_rtttl.c355 if (IsDigit(c))
399 else if (IsDigit(c))
948 if (IsDigit(c))
/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
H A Deas_imelody.c480 if (IsDigit(c))
1258 else if (IsDigit(c))
1264 if (IsDigit(c))
1308 if (IsDigit(c))
1369 else if (IsDigit(c))
1538 if (!IsDigit(c))
H A Deas_rtttl.c355 if (IsDigit(c))
399 else if (IsDigit(c))
948 if (IsDigit(c))
/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
H A Deas_imelody.c489 if (IsDigit(c))
1267 else if (IsDigit(c))
1273 if (IsDigit(c))
1317 if (IsDigit(c))
1378 else if (IsDigit(c))
1547 if (!IsDigit(c))
H A Deas_rtttl.c355 if (IsDigit(c))
399 else if (IsDigit(c))
948 if (IsDigit(c))
/external/protobuf/gtest/test/
H A Dgtest-port_test.cc243 EXPECT_FALSE(IsDigit('\0'));
244 EXPECT_FALSE(IsDigit(' '));
245 EXPECT_FALSE(IsDigit('+'));
246 EXPECT_FALSE(IsDigit('-'));
247 EXPECT_FALSE(IsDigit('.'));
248 EXPECT_FALSE(IsDigit('a'));
252 EXPECT_TRUE(IsDigit('0'));
253 EXPECT_TRUE(IsDigit('1'));
254 EXPECT_TRUE(IsDigit('5'));
255 EXPECT_TRUE(IsDigit('
[all...]
/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/pdfium/fpdfsdk/include/javascript/
H A DPublicMethods.h89 static FX_BOOL IsDigit(char ch);
90 static FX_BOOL IsDigit(wchar_t ch);
/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/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/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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.cc218 while (IsDigit(*nptr)) {
H A Dsanitizer_common.h349 INLINE bool IsDigit(int c) {
/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/v8/test/cctest/
H A Dtest-regexp.cc446 static bool IsDigit(uc16 c) { function
452 return !IsDigit(c);
491 TestCharacterClassEscapes('d', IsDigit);
/external/chromium_org/testing/gtest/src/
H A Dgtest-internal-inl.h980 if (str.empty() || !IsDigit(str[0])) {
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-internal-inl.h975 if (str.empty() || !IsDigit(str[0])) {

Completed in 488 milliseconds

12