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.c156 if(ISALNUM(c) && *p++ == '-') { in setcharorrange()
319 found = ISALNUM(*s); in loop()
Daltsvc.c347 while(*p && ISALNUM(*p)) in getalnum()
477 while(*p && (ISALNUM(*p) || (*p == '.') || (*p == '-'))) in Curl_altsvc_parse()
Dparsedate.c262 while(**date && !ISALNUM(**date)) in skip()
Durlapi.c249 else if(ISALNUM(s) || (s == '+') || (s == '-') || (s == '.') ) { in Curl_is_absolute_url()
/external/harfbuzz_ng/src/
Dhb-ot-tag.cc201 if (!ISALNUM (s[strlen (subtag)])) in subtag_matches()
306 for (i = 0; i < 4 && ISALNUM (s[i]); i++) in parse_private_use_subtag()
Dhb-dsalgs.hh249 static inline bool ISALNUM (unsigned char c) in ISALNUM() function
Dhb-common.cc899 while (*pp < end && (ISALNUM(**pp) || **pp == '_')) in parse_tag()
/external/python/cpython2/Include/
Dbytes_methods.h44 #define ISALNUM(c) Py_ISALNUM(c) macro
/external/curl/src/
Dtool_paramhlp.c322 while(!ISALNUM(*token)) { /* may be NULL if token is all modifiers */ in proto2num()
Dtool_urlglob.c336 if(ISALNUM(c) || c == '.' || c == '%') { in peek_ipv6()
/external/libevent/
Devutil.c2303 IMPL_CTYPE_FN(ISALNUM) in IMPL_CTYPE_FN() argument