HomeSort by relevance Sort by last modified time
    Searched refs:IsDigit (Results 1 - 25 of 40) 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/google-breakpad/src/testing/src/
gmock-internal-utils.cc 62 (!IsDigit(prev_char) && IsDigit(*p));
  /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/protobuf/gtest/test/
gtest-port_test.cc 256 EXPECT_FALSE(IsDigit('\0'));
257 EXPECT_FALSE(IsDigit(' '));
258 EXPECT_FALSE(IsDigit('+'));
259 EXPECT_FALSE(IsDigit('-'));
260 EXPECT_FALSE(IsDigit('.'));
261 EXPECT_FALSE(IsDigit('a'));
265 EXPECT_TRUE(IsDigit('0'));
266 EXPECT_TRUE(IsDigit('1'));
267 EXPECT_TRUE(IsDigit('5'));
268 EXPECT_TRUE(IsDigit('9'))
    [all...]
  /external/pdfium/fpdfsdk/include/javascript/
PublicMethods.h 91 static FX_BOOL IsDigit(char ch);
92 static FX_BOOL IsDigit(wchar_t ch);
  /external/protobuf/gtest/src/
gtest-port.cc 183 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; }
204 case 'd': return IsDigit(ch);
205 case 'D': return !IsDigit(ch);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 225 while (IsDigit(*nptr)) {
sanitizer_mac.cc 313 if (IsDigit(version[1]))
sanitizer_common.h 425 INLINE bool IsDigit(int c) {
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 142 else if (!IsDigit(c))
152 FX_BOOL CJS_PublicMethods::IsDigit(wchar_t ch)
157 FX_BOOL CJS_PublicMethods::IsDigit(char ch)
169 return (IsDigit(ch) || IsAlphabetic(ch));
177 return IsDigit(c_Change);
306 if (IsDigit(c))
476 if (IsDigit((wchar_t)c))
531 if (IsDigit((wchar_t)c))
1370 if (!IsDigit(*it))
    [all...]
  /external/sqlite/dist/orig/
shell.c 138 #define IsDigit(X) isdigit((unsigned char)X)
391 if( !IsDigit(*z) ){
396 while( IsDigit(*z) ){ z++; }
399 if( !IsDigit(*z) ) return 0;
400 while( IsDigit(*z) ){ z++; }
406 if( !IsDigit(*z) ) return 0;
407 while( IsDigit(*z) ){ z++; }
    [all...]
  /external/sqlite/dist/
shell.c 144 #define IsDigit(X) isdigit((unsigned char)X)
397 if( !IsDigit(*z) ){
402 while( IsDigit(*z) ){ z++; }
405 if( !IsDigit(*z) ) return 0;
406 while( IsDigit(*z) ){ z++; }
412 if( !IsDigit(*z) ) return 0;
413 while( IsDigit(*z) ){ z++; }
    [all...]
  /external/v8/test/cctest/
test-regexp.cc 446 static bool IsDigit(uc16 c) {
452 return !IsDigit(c);
491 TestCharacterClassEscapes('d', IsDigit);
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h     [all...]
  /external/gtest/src/
gtest-internal-inl.h     [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h     [all...]

Completed in 971 milliseconds

1 2