Searched refs:ISDIGIT (Results 1 - 11 of 11) sorted by relevance

/external/bison/lib/
H A Dstrverscmp.c39 /* ISDIGIT differs from isdigit, as follows:
43 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
46 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro
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++))
123 return ISDIGIT (*p2) ? -1 : diff;
/external/chromium_org/third_party/icu/source/io/
H A Duprntf_p.c1026 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
1070 if(ISDIGIT(*alias)) {
1073 if(ISDIGIT(*alias)) {
1076 while(ISDIGIT(*alias)) {
1134 if(ISDIGIT(*alias)) {
1137 while(ISDIGIT(*alias)) {
1146 while (ISMOD(*alias) || ISFLAG(*alias) || ISDIGIT(*alias) ||
1272 if(ISDIGIT(*alias)) {
1278 if(ISDIGIT(*alias)) {
1281 while(ISDIGIT(*alia
[all...]
H A Duscanf_p.c58 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
138 if(ISDIGIT(*s)) {
144 if(ISDIGIT(*s)) {
147 while(ISDIGIT(*s)) {
189 if(ISDIGIT(*s)){
192 while(ISDIGIT(*s)) {
/external/icu/icu4c/source/io/
H A Duprntf_p.c1026 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
1070 if(ISDIGIT(*alias)) {
1073 if(ISDIGIT(*alias)) {
1076 while(ISDIGIT(*alias)) {
1134 if(ISDIGIT(*alias)) {
1137 while(ISDIGIT(*alias)) {
1146 while (ISMOD(*alias) || ISFLAG(*alias) || ISDIGIT(*alias) ||
1272 if(ISDIGIT(*alias)) {
1278 if(ISDIGIT(*alias)) {
1281 while(ISDIGIT(*alia
[all...]
H A Duscanf_p.c58 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
138 if(ISDIGIT(*s)) {
144 if(ISDIGIT(*s)) {
147 while(ISDIGIT(*s)) {
189 if(ISDIGIT(*s)){
192 while(ISDIGIT(*s)) {
/external/valgrind/main/coregrind/m_demangle/
H A Dcplus-dem.c509 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 (*
[all...]
H A Dsafe-ctype.h93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_util.c57 #define ISDIGIT(a) ((a>='0') && (a<='9')) macro
194 if (ISDIGIT (*p_ascii))
202 if (ISDIGIT (*p_ascii))
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c427 #ifndef ISDIGIT
428 #define ISDIGIT(ch) ('0' <= (unsigned char)ch && (unsigned char)ch <= '9') macro
429 #endif /* !defined(ISDIGIT) */
535 if (ISDIGIT(ch)) {
568 if (ISDIGIT(ch)) {
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c427 #ifndef ISDIGIT
428 #define ISDIGIT(ch) ('0' <= (unsigned char)ch && (unsigned char)ch <= '9') macro
429 #endif /* !defined(ISDIGIT) */
535 if (ISDIGIT(ch)) {
568 if (ISDIGIT(ch)) {
/external/chromium_org/third_party/libevent/
H A Devdns.c383 #define ISDIGIT(c) isdigit((int)(unsigned char)(c)) macro
2820 while (ISDIGIT(*ips) || *ips == '.' || *ips == ':')

Completed in 2728 milliseconds