Searched refs:IsDigit (Results 1 - 25 of 40) 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/chromium/testing/gmock/src/
H A Dgmock-internal-utils.cc62 (!IsDigit(prev_char) && IsDigit(*p));
/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/open-vcdiff/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/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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.cc192 while (IsDigit(*nptr)) {
H A Dsanitizer_common.h261 INLINE bool IsDigit(int c) {
/external/sqlite/dist/orig/
H A Dshell.c90 #define IsDigit(X) isdigit((unsigned char)X) macro
284 if( !IsDigit(*z) ){
289 while( IsDigit(*z) ){ z++; }
292 if( !IsDigit(*z) ) return 0;
293 while( IsDigit(*z) ){ z++; }
299 if( !IsDigit(*z) ) return 0;
300 while( IsDigit(*z) ){ z++; }
/external/sqlite/dist/
H A Dshell.c95 #define IsDigit(X) isdigit((unsigned char)X) macro
289 if( !IsDigit(*z) ){
294 while( IsDigit(*z) ){ z++; }
297 if( !IsDigit(*z) ) return 0;
298 while( IsDigit(*z) ){ z++; }
304 if( !IsDigit(*z) ) return 0;
305 while( IsDigit(*z) ){ z++; }
/external/chromium/testing/gtest/src/
H A Dgtest-internal-inl.h968 if (str.empty() || !IsDigit(str[0])) {
/external/chromium_org/testing/gtest/src/
H A Dgtest-internal-inl.h993 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])) {
/external/gtest/src/
H A Dgtest-internal-inl.h975 if (str.empty() || !IsDigit(str[0])) {

Completed in 300 milliseconds

12