HomeSort by relevance Sort by last modified time
    Searched defs:IsDigit (Results 1 - 13 of 13) sorted by null

  /external/sonivox/arm-fm-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
  /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/asan/
asan_interceptors.cc 177 static inline bool IsDigit(int c) {
201 while (IsDigit(*nptr)) {
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp     [all...]
  /external/v8/test/cctest/
test-regexp.cc 431 static bool IsDigit(uc16 c) {
437 return !IsDigit(c);
488 TestCharacterClassEscapes('d', IsDigit);
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /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...]
  /frameworks/compile/mclinker/utils/gtest/include/
gtest.h     [all...]

Completed in 410 milliseconds