HomeSort by relevance Sort by last modified time
    Searched defs:ISDIGIT (Results 1 - 17 of 17) 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...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
strverscmp.c 41 /* ISDIGIT differs from isdigit, as follows:
45 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
46 isdigit unless it's important to use the locale's definition
48 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
103 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
110 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
113 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
121 while (ISDIGIT (*p1++))
122 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))