Home
last modified time | relevance | path

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

12

/third_party/curl/lib/
H A Dcurl_ctype.h39 #define ISXDIGIT(x) (ISDIGIT(x) || ISLOWHEXALHA(x) || ISUPHEXALHA(x))
40 #define ISALNUM(x) (ISDIGIT(x) || ISLOWER(x) || ISUPPER(x))
43 #define ISDIGIT(x) (((x) >= '0') && ((x) <= '9')) macro
H A Dparsedate.c302 if(ISDIGIT(date[1])) { in oneortwodigit()
318 if((hh < 24) && (*p == ':') && ISDIGIT(p[1])) { in match_time()
321 if((*p == ':') && ISDIGIT(p[1])) { in match_time()
410 else if(ISDIGIT(*date)) { in parsedate()
H A Dftplistparser.c387 parser->os_type = ISDIGIT(buffer[0]) ? OS_TYPE_WIN_NT : OS_TYPE_UNIX; in Curl_ftp_parselist()
448 while(ISDIGIT(*endptr)) in Curl_ftp_parselist()
532 if(ISDIGIT(c)) { in Curl_ftp_parselist()
559 else if(!ISDIGIT(c)) { in Curl_ftp_parselist()
614 if(ISDIGIT(c)) { in Curl_ftp_parselist()
644 else if(!ISDIGIT(c)) { in Curl_ftp_parselist()
H A Dcurl_fnmatch.c137 if(ISDIGIT(c)) in charclass()
316 found = ISDIGIT(*s); in loop()
H A Dcf-h1-proxy.c353 ISDIGIT(header[9]) && ISDIGIT(header[10]) && ISDIGIT(header[11]) && in on_resp_header()
354 !ISDIGIT(header[12])) { in on_resp_header()
H A Dmprintf.c187 if(ISDIGIT(*input)) { in dollarstring()
195 } while(ISDIGIT(*input)); in dollarstring()
333 while(ISDIGIT(*fmt)) { in parsefmt()
414 } while(ISDIGIT(*fmt)); in parsefmt()
H A Dhttp.c3602 while(*ptr && !ISDIGIT(*ptr) && *ptr != '*') in Curl_http_header()
3606 if(ISDIGIT(*ptr)) { in Curl_http_header()
4343 if(ISDIGIT(p[0]) && ISDIGIT(p[1]) && ISDIGIT(p[2])) { in http_rw_headers()
4363 if(ISDIGIT(p[0]) && ISDIGIT(p[1]) && ISDIGIT(p[2])) { in http_rw_headers()
4430 if(ISDIGIT(*p)) { in http_rw_headers()
4432 if((p[0] == '.') && ISDIGIT( in http_rw_headers()
[all...]
H A Dsmtp.c216 if(len < 4 || !ISDIGIT(line[0]) || !ISDIGIT(line[1]) || !ISDIGIT(line[2])) in smtp_endofresp()
H A Dimap.c224 if(line < end && ISDIGIT(*line)) { in imap_matchresp()
228 while(line < end && ISDIGIT(*line)); in imap_matchresp()
1094 while((len < 20) && p[len] && ISDIGIT(p[len])) in imap_state_select_resp()
H A Dftp.c530 #define STATUSCODE(line) (ISDIGIT(line[0]) && ISDIGIT(line[1]) && \
531 ISDIGIT(line[2]))
1810 if(!ISDIGIT(*p)) in match_pasv_6nums()
1846 /* the ISDIGIT() check here is because strtoul() accepts leading minus in ftp_state_pasv_resp()
1848 if((ptr[1] == sep) && (ptr[2] == sep) && ISDIGIT(ptr[3])) { in ftp_state_pasv_resp()
2337 while(ISDIGIT(fdigit[-1]) && (fdigit > start)) in ftp_state_size_resp()
2517 if(!ISDIGIT(*bytes)) { in ftp_state_get_resp()
H A Daltsvc.c576 if(ISDIGIT(*p)) in Curl_altsvc_parse()
H A Durlapi.c550 if(!ISDIGIT(*portptr)) in Curl_parse_port()
686 if(!ISDIGIT(*c)) in ipv4_normalize()
H A Dcurl_sasl.c147 if(!ISUPPER(c) && !ISDIGIT(c) && c != '-' && c != '_') in Curl_sasl_decode_mech()
/third_party/node/deps/cares/src/lib/
H A Dinet_net_pton.c107 } else if (ISASCII(ch) && ISDIGIT(ch)) { in ares_inet_net_pton_ipv4()
118 } while ((ch = *src++) != '\0' && ISASCII(ch) && ISDIGIT(ch)); in ares_inet_net_pton_ipv4()
130 if (!ISASCII(ch) || !ISDIGIT(ch)) { in ares_inet_net_pton_ipv4()
139 if (ch == '/' && ISASCII(src[0]) && ISDIGIT(src[0]) && dst > odst) { in ares_inet_net_pton_ipv4()
150 } while ((ch = *src++) != '\0' && ISASCII(ch) && ISDIGIT(ch)); in ares_inet_net_pton_ipv4()
H A Dsetup_once.h269 #define ISDIGIT(x) (isdigit((int)((unsigned char)x))) macro
H A Dares_getaddrinfo.c259 if (!ISDIGIT(*p) && *p != '.') { in fake_addrinfo()
/third_party/icu/icu4c/source/io/
H A Duprntf_p.cpp1041 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
1085 if(ISDIGIT(*alias)) { in parseArguments()
1088 if(ISDIGIT(*alias)) { in parseArguments()
1091 while(ISDIGIT(*alias)) { in parseArguments()
1149 if(ISDIGIT(*alias)) { in parseArguments()
1152 while(ISDIGIT(*alias)) { in parseArguments()
1161 while (ISMOD(*alias) || ISFLAG(*alias) || ISDIGIT(*alias) || in parseArguments()
1287 if(ISDIGIT(*alias)) { in u_printf_parse()
1293 if(ISDIGIT(*alias)) { in u_printf_parse()
1296 while(ISDIGIT(*alia in u_printf_parse()
[all...]
H A Duscanf_p.cpp60 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
140 if(ISDIGIT(*s)) { in u_scanf_parse_spec()
146 if(ISDIGIT(*s)) { in u_scanf_parse_spec()
149 while(ISDIGIT(*s)) { in u_scanf_parse_spec()
191 if(ISDIGIT(*s)){ in u_scanf_parse_spec()
194 while(ISDIGIT(*s)) { in u_scanf_parse_spec()
/third_party/skia/third_party/externals/icu/source/io/
H A Duprntf_p.cpp1041 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
1085 if(ISDIGIT(*alias)) { in parseArguments()
1088 if(ISDIGIT(*alias)) { in parseArguments()
1091 while(ISDIGIT(*alias)) { in parseArguments()
1149 if(ISDIGIT(*alias)) { in parseArguments()
1152 while(ISDIGIT(*alias)) { in parseArguments()
1161 while (ISMOD(*alias) || ISFLAG(*alias) || ISDIGIT(*alias) || in parseArguments()
1287 if(ISDIGIT(*alias)) { in u_printf_parse()
1293 if(ISDIGIT(*alias)) { in u_printf_parse()
1296 while(ISDIGIT(*alia in u_printf_parse()
[all...]
H A Duscanf_p.cpp60 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
140 if(ISDIGIT(*s)) { in u_scanf_parse_spec()
146 if(ISDIGIT(*s)) { in u_scanf_parse_spec()
149 while(ISDIGIT(*s)) { in u_scanf_parse_spec()
191 if(ISDIGIT(*s)){ in u_scanf_parse_spec()
194 while(ISDIGIT(*s)) { in u_scanf_parse_spec()
/third_party/curl/src/
H A Dtool_urlglob.c251 else if(ISDIGIT(*pattern)) { in glob_range()
264 while(ISDIGIT(*c)) { in glob_range()
282 if(!ISDIGIT(*pattern)) { in glob_range()
641 if(*filename == '#' && ISDIGIT(filename[1])) { in glob_match_url()
H A Dtool_getparam.c1685 while(ISDIGIT(*p)) in getparameter()
2514 if(ISDIGIT(*nextarg) && !strchr(nextarg, '-')) { in getparameter()
2536 if(!ISDIGIT(*tmp_range) && *tmp_range != '-' && *tmp_range != ',') { in getparameter()
/third_party/curl/tests/server/
H A Drtspd.c275 while(*ptr && !ISDIGIT(*ptr)) in ProcessRequest()
428 if(portp && (*(portp + 1) != '\0') && ISDIGIT(*(portp + 1))) in ProcessRequest()
H A Dtftpd.c1104 while(*ptr && !ISDIGIT(*ptr)) in validate_access()
/third_party/curl/lib/vssh/
H A Dlibssh.c2854 if(sshc->quote_attrs->gid == 0 && !ISDIGIT(sshc->quote_path1[0]) && in sftp_quote_stat()
2870 if(perms == 0 && !ISDIGIT(sshc->quote_path1[0])) { in sftp_quote_stat()
2884 if(sshc->quote_attrs->uid == 0 && !ISDIGIT(sshc->quote_path1[0]) && in sftp_quote_stat()

Completed in 43 milliseconds

12