HomeSort by relevance Sort by last modified time
    Searched refs:ISDIGIT (Results 1 - 25 of 31) sorted by null

1 2

  /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...]
  /system/core/sh/
syntax.h 54 #define ISDIGIT 01 /* a digit */
76 #define is_special(c) ((is_type+SYNBASE)[c] & (ISSPECL|ISDIGIT))
  /external/chromium_org/third_party/icu/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/icu4c/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/valgrind/main/coregrind/m_demangle/
cplus-dem.c 509 if (! ISDIGIT ((unsigned char)**type))
512 while (ISDIGIT ((unsigned char)**type))
523 while (ISDIGIT ((unsigned char) **type))
551 if (!ISDIGIT ((unsigned char)**mangled))
931 while (ISLOWER(*p) || ISDIGIT (*p)
932 || (p[0] == '_' && (ISLOWER (p[1]) || ISDIGIT (p[1]))));
1065 if (ISDIGIT (*p))
1070 while (ISDIGIT (*p) || (p[0] == '_' && ISDIGIT (p[1])));
1118 while (ISDIGIT (*p)
    [all...]
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
  /external/bluetooth/bluedroid/btif/src/
btif_util.c 57 #define ISDIGIT(a) ((a>='0') && (a<='9'))
194 if (ISDIGIT (*p_ascii))
202 if (ISDIGIT (*p_ascii))
  /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/sed-4.2.1/
basicdefs.h 154 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/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
defaults.h 86 if (i < thissize - 1 && ISDIGIT(p[i + 1])) \
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/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
defaults.h 86 if (i < thissize - 1 && ISDIGIT(p[i + 1])) \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/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
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/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/glob/
fnmatch.c 79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
380 || (STREQ (str, "digit") && ISDIGIT ((unsigned char) *n))
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 288 while (ISDIGIT(ch))
814 else if (posixicity == POSIXLY_BASIC && !ISDIGIT (*p))
1000 else if (ISDIGIT(ch))
1223 if (ISDIGIT(ch) && posixicity != POSIXLY_BASIC)
    [all...]
  /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)
main.c     [all...]

Completed in 629 milliseconds

1 2