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

  /external/bison/lib/
strverscmp.c 39 /* ISDIGIT differs from isdigit, as follows:
43 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
44 isdigit unless it's important to use the locale's definition
46 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
108 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
111 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
119 while (ISDIGIT (*p1++))
120 if (!ISDIGIT (*p2++)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
bytes_methods.h 42 #define ISDIGIT(c) Py_ISDIGIT(c)
53 #undef isdigit macro
54 #define isdigit(c) undefined_isdigit(c) macro
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
bytes_methods.h 42 #define ISDIGIT(c) Py_ISDIGIT(c)
53 #undef isdigit macro
54 #define isdigit(c) undefined_isdigit(c) macro
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
380 || (STREQ (str, "digit") && ISDIGIT ((unsigned char) *n))
  /system/bt/btif/src/
btif_util.c 56 #define ISDIGIT(a) ((a>='0') && (a<='9'))
173 if (ISDIGIT (*p_ascii))
181 if (ISDIGIT (*p_ascii))
  /external/valgrind/coregrind/m_demangle/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
132 #undef isdigit macro
133 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /ndk/sources/host-tools/make-3.81/
make.h 295 /* ISDIGIT offers the following features:
301 only '0' through '9' are digits. Prefer ISDIGIT to isdigit() unless
304 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
  /external/icu/icu4c/source/io/
uprntf_p.c     [all...]
uscanf_p.c 58 #define ISDIGIT(s) (s) == DIGIT_ZERO || \
138 if(ISDIGIT(*s)) {
144 if(ISDIGIT(*s)) {
147 while(ISDIGIT(*s)) {
189 if(ISDIGIT(*s)){
192 while(ISDIGIT(*s)) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 427 #ifndef ISDIGIT
428 #define ISDIGIT(ch) ('0' <= (unsigned char)ch && (unsigned char)ch <= '9')
429 #endif /* !defined(ISDIGIT) */
535 if (ISDIGIT(ch)) {
568 if (ISDIGIT(ch)) {
    [all...]

Completed in 280 milliseconds