Home
last modified time | relevance | path

Searched refs:ISALNUM (Results 1 – 13 of 13) sorted by relevance

/external/curl/lib/
Dcurl_ctype.h41 #define ISALNUM(x) (isalnum((int) ((unsigned char)x))) macro
66 #define ISALNUM(x) (Curl_isalnum((int) ((unsigned char)x))) macro
Dftplistparser.c632 if(ISALNUM(c)) { in Curl_ftp_parselist()
648 else if(!ISALNUM(c) && c != '.') { in Curl_ftp_parselist()
656 if(ISALNUM(c)) { in Curl_ftp_parselist()
670 else if(!ISALNUM(c) && c != '.') { in Curl_ftp_parselist()
678 if(ISALNUM(c)) { in Curl_ftp_parselist()
706 else if(!ISALNUM(c) && c != '.' && c != ':') { in Curl_ftp_parselist()
Dcurl_fnmatch.c147 if(ISALNUM(c) && *p++ == '-') { in setcharorrange()
310 found = ISALNUM(*s); in loop()
Dparsedate.c268 while(**date && !ISALNUM(**date)) in skip()
Daltsvc.c493 while(*p && (ISALNUM(*p) || (*p == '.') || (*p == '-'))) in Curl_altsvc_parse()
Durlapi.c254 else if(ISALNUM(s) || (s == '+') || (s == '-') || (s == '.') ) { in Curl_is_absolute_url()
/external/python/cpython2/Include/
Dbytes_methods.h44 #define ISALNUM(c) Py_ISALNUM(c) macro
/external/harfbuzz_ng/src/
Dhb-ot-tag.cc189 if (!ISALNUM (s[strlen (subtag)])) in subtag_matches()
322 for (i = 0; i < 4 && ISALNUM (s[i]); i++) in parse_private_use_subtag()
Dhb-common.cc797 while (*pp < end && (ISALNUM(**pp) || **pp == '_')) in parse_tag()
Dhb-algs.hh565 static inline bool ISALNUM (unsigned char c) in ISALNUM() function
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/
Dsetup_once.h277 #define ISALNUM(x) (isalnum((int) ((unsigned char)x))) macro
/external/curl/src/
Dtool_paramhlp.c314 while(!ISALNUM(*token)) { /* may be NULL if token is all modifiers */ in proto2num()
/external/libevent/
Devutil.c2375 IMPL_CTYPE_FN(ISALNUM) in IMPL_CTYPE_FN() argument