HomeSort by relevance Sort by last modified time
    Searched refs:IsDigit (Results 1 - 25 of 42) sorted by null

1 2

  /external/sonivox/arm-fm-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
eas_imelody.c 480 if (IsDigit(c))
    [all...]
eas_rtttl.c 355 if (IsDigit(c))
399 else if (IsDigit(c))
948 if (IsDigit(c))
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
eas_imelody.c 480 if (IsDigit(c))
    [all...]
eas_rtttl.c 355 if (IsDigit(c))
399 else if (IsDigit(c))
948 if (IsDigit(c))
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
eas_imelody.c 489 if (IsDigit(c))
    [all...]
eas_rtttl.c 355 if (IsDigit(c))
399 else if (IsDigit(c))
948 if (IsDigit(c))
    [all...]
  /external/chromium/testing/gmock/src/
gmock-internal-utils.cc 62 (!IsDigit(prev_char) && IsDigit(*p));
  /external/protobuf/gtest/test/
gtest-port_test.cc 243 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('9'))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
nvvertparse.c 130 static GLboolean IsDigit(GLubyte b)
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])) {
    [all...]
nvfragparse.c 275 static GLboolean IsDigit(GLubyte b)
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] == '.'){
    [all...]
  /external/mesa3d/src/mesa/program/
nvvertparse.c 130 static GLboolean IsDigit(GLubyte b)
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])) {
    [all...]
nvfragparse.c 275 static GLboolean IsDigit(GLubyte b)
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] == '.'){
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-port.cc 174 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; }
195 case 'd': return IsDigit(ch);
196 case 'D': return !IsDigit(ch);
  /external/protobuf/gtest/src/
gtest-port.cc 174 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; }
195 case 'd': return IsDigit(ch);
196 case 'D': return !IsDigit(ch);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 192 while (IsDigit(*nptr)) {
sanitizer_common.h 261 INLINE bool IsDigit(int c) {
  /external/sqlite/dist/orig/
shell.c 90 #define IsDigit(X) isdigit((unsigned char)X)
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++; }
    [all...]
  /external/sqlite/dist/
shell.c 95 #define IsDigit(X) isdigit((unsigned char)X)
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++; }
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium/testing/gtest/src/
gtest-internal-inl.h     [all...]
  /external/chromium_org/testing/gtest/src/
gtest-internal-inl.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-internal-inl.h     [all...]

Completed in 1924 milliseconds

1 2