HomeSort by relevance Sort by last modified time
    Searched refs:IsDigit (Results 1 - 25 of 45) 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/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/pdfium/fpdfsdk/include/javascript/
PublicMethods.h 89 static FX_BOOL IsDigit(char ch);
90 static FX_BOOL IsDigit(wchar_t 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/chromium_org/base/third_party/symbolize/
demangle.cc 290 static bool IsDigit(char c) {
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')) {
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 141 else if (!IsDigit(c))
151 FX_BOOL CJS_PublicMethods::IsDigit(wchar_t ch)
156 FX_BOOL CJS_PublicMethods::IsDigit(char ch)
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))
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 218 while (IsDigit(*nptr)) {
sanitizer_common.h 349 INLINE bool IsDigit(int c) {
  /external/sqlite/dist/orig/
shell.c 97 #define IsDigit(X) isdigit((unsigned char)X)
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++; }
    [all...]
  /external/sqlite/dist/
shell.c 102 #define IsDigit(X) isdigit((unsigned char)X)
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++; }
    [all...]
  /external/chromium_org/v8/test/cctest/
test-regexp.cc 446 static bool IsDigit(uc16 c) {
452 return !IsDigit(c);
491 TestCharacterClassEscapes('d', IsDigit);
    [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 547 milliseconds

1 2