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

12

/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/c-ares/
H A Dinet_net_pton.c113 } else if (ISASCII(ch) && ISDIGIT(ch)) {
124 ISASCII(ch) && ISDIGIT(ch));
133 if (!ISASCII(ch) || !ISDIGIT(ch))
141 ISDIGIT(src[0]) && dst > odst) {
151 } while ((ch = *src++) != '\0' && ISASCII(ch) && ISDIGIT(ch));
H A Dares_options.c178 if (!ISDIGIT(*pp)) {
H A Dsetup_once.h246 #define ISDIGIT(x) (isdigit((int) ((unsigned char)x))) macro
H A Dadig.c329 if (!ISDIGIT(*optarg))
337 if (!ISDIGIT(*optarg))
H A Dares_gethostbyname.c257 if (!ISDIGIT(*p) && *p != '.') {
/external/icu/icu4c/source/io/
H A Duprntf_p.c1028 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
1072 if(ISDIGIT(*alias)) {
1075 if(ISDIGIT(*alias)) {
1078 while(ISDIGIT(*alias)) {
1136 if(ISDIGIT(*alias)) {
1139 while(ISDIGIT(*alias)) {
1148 while (ISMOD(*alias) || ISFLAG(*alias) || ISDIGIT(*alias) ||
1274 if(ISDIGIT(*alias)) {
1280 if(ISDIGIT(*alias)) {
1283 while(ISDIGIT(*alia
[all...]
H A Duscanf_p.c60 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
140 if(ISDIGIT(*s)) {
146 if(ISDIGIT(*s)) {
149 while(ISDIGIT(*s)) {
191 if(ISDIGIT(*s)){
194 while(ISDIGIT(*s)) {
/external/curl/lib/
H A Dcurl_fnmatch.c259 (ISDIGIT(c) && ISDIGIT(rangestart)) ||
366 found = ISDIGIT(*s);
H A Dcurl_setup_once.h283 #define ISDIGIT(x) (isdigit((int) ((unsigned char)x))) macro
H A Dparsedate.c385 else if(ISDIGIT(*date)) {
H A Dsmtp.c252 if(len < 4 || !ISDIGIT(line[0]) || !ISDIGIT(line[1]) || !ISDIGIT(line[2]))
H A Dcurl_sasl.c134 if(!ISUPPER(c) && !ISDIGIT(c) && c != '-' && c != '_')
H A Dftplistparser.c431 while(ISDIGIT(*endptr))
627 else if(!ISDIGIT(c)) {
H A Dimap.c259 if(line < end && ISDIGIT(*line)) {
263 while(line < end && ISDIGIT(*line));
H A Dssh.c1463 if(sshc->quote_attrs.gid == 0 && !ISDIGIT(sshc->quote_path1[0]) &&
1479 !ISDIGIT(sshc->quote_path1[0])) {
1492 if(sshc->quote_attrs.uid == 0 && !ISDIGIT(sshc->quote_path1[0]) &&
H A Dftp.c595 #define STATUSCODE(line) (ISDIGIT(line[0]) && ISDIGIT(line[1]) && \
596 ISDIGIT(line[2]))
2548 if(!ISDIGIT(*bytes)) {
H A Dmprintf.c188 while(ISDIGIT(*input)) {
/external/valgrind/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/curl/src/
H A Dtool_urlglob.c231 else if(ISDIGIT(*pattern)) {
244 while(ISDIGIT(*c)) {
597 if(*filename == '#' && ISDIGIT(filename[1])) {
H A Dtool_getparam.c1641 if(ISDIGIT(*nextarg) && !strchr(nextarg, '-')) {
1659 if(!ISDIGIT(*tmp_range) && *tmp_range != '-' && *tmp_range != ',') {
/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/curl/tests/server/
H A Drtspd.c400 while(*ptr && !ISDIGIT(*ptr))
551 if(portp && (*(portp+1) != '\0') && ISDIGIT(*(portp+1)))
H A Dsws.c516 while(*ptr && !ISDIGIT(*ptr))
585 if(portp && (*(portp+1) != '\0') && ISDIGIT(*(portp+1))) {
661 while(*ptr && !ISDIGIT(*ptr))

Completed in 658 milliseconds

12