Home
last modified time | relevance | path

Searched refs:checkprefix (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/llvm/utils/UpdateTestChecks/
Dcommon.py442 if any(map(lambda checkprefix: func_name not in func_dict[checkprefix], checkprefixes)):
449 for checkprefix in checkprefixes:
450 if checkprefix in printed_prefixes:
454 if checkprefix in prefix_exclusions:
458 if not func_dict[checkprefix][func_name]:
467 if checkprefix not in global_vars_seen_dict:
468 global_vars_seen_dict[checkprefix] = set()
469 global_vars_seen = global_vars_seen_dict[checkprefix]
472 printed_prefixes.append(checkprefix)
473 attrs = str(func_dict[checkprefix][func_name].attrs)
[all …]
/external/llvm/utils/
Dupdate_llc_test_checks.py103 for checkprefix in checkprefixes:
104 if checkprefix in printed_prefixes:
106 if not func_dict[checkprefix][func_name]:
111 printed_prefixes.append(checkprefix)
112 output_lines.append('; %s-LABEL: %s:' % (checkprefix, func_name))
113 func_body = func_dict[checkprefix][func_name].splitlines()
114 output_lines.append('; %s: %s' % (checkprefix, func_body[0]))
116 output_lines.append('; %s-NEXT: %s' % (checkprefix, func_line))
Dupdate_test_checks.py197 for checkprefix in checkprefixes:
198 if checkprefix in printed_prefixes:
200 if not func_dict[checkprefix][func_name]:
206 printed_prefixes.append(checkprefix)
207 output_lines.append(check_label_format % (checkprefix, func_name))
208 func_body = func_dict[checkprefix][func_name].splitlines()
243 output_lines.append('; %s: %s' % (checkprefix, func_line))
245 output_lines.append('; %s-NEXT: %s' % (checkprefix, func_line))
/external/curl/lib/
Dhttp.c903 if(checkprefix("Negotiate", auth)) { in Curl_http_input_auth()
929 if(checkprefix("NTLM", auth)) { in Curl_http_input_auth()
967 if(checkprefix("Digest", auth)) { in Curl_http_input_auth()
989 if(checkprefix("Basic", auth)) { in Curl_http_input_auth()
1002 if(checkprefix("Bearer", auth)) { in Curl_http_input_auth()
1780 checkprefix("Host:", compare)) in Curl_add_custom_headers()
1784 checkprefix("Content-Type:", compare)) in Curl_add_custom_headers()
1788 checkprefix("Content-Type:", compare)) in Curl_add_custom_headers()
1793 checkprefix("Content-Length:", compare)) in Curl_add_custom_headers()
1798 checkprefix("Connection:", compare)) in Curl_add_custom_headers()
[all …]
Durlapi.c742 if(!checkprefix("localhost/", ptr) && in seturl()
743 !checkprefix("127.0.0.1/", ptr)) { in seturl()
926 if(checkprefix("ftp.", hostname)) in seturl()
928 else if(checkprefix("dict.", hostname)) in seturl()
930 else if(checkprefix("ldap.", hostname)) in seturl()
932 else if(checkprefix("imap.", hostname)) in seturl()
934 else if(checkprefix("smtp.", hostname)) in seturl()
936 else if(checkprefix("pop3.", hostname)) in seturl()
Dhttp_proxy.c489 if((checkprefix("WWW-Authenticate:", linep) && in CONNECT()
491 (checkprefix("Proxy-authenticate:", linep) && in CONNECT()
506 else if(checkprefix("Content-Length:", linep)) { in CONNECT()
521 else if(checkprefix("Transfer-Encoding:", linep)) { in CONNECT()
Dstrcase.h46 #define checkprefix(a,b) curl_strnequal(a,b,strlen(a)) macro
Dhttp_digest.c61 if(!checkprefix("Digest", header)) in Curl_input_digest()
Dhttp_ntlm.c75 if(checkprefix("NTLM", header)) { in Curl_input_ntlm()
Drtsp.c764 if(checkprefix("CSeq:", header)) { in Curl_rtsp_parseheader()
777 else if(checkprefix("Session:", header)) { in Curl_rtsp_parseheader()
Dcurl_ntlm_wb.c339 if(!checkprefix("NTLM", header)) in Curl_input_ntlm_wb()
Dtftp.c354 if(checkprefix(option, TFTP_OPTION_BLKSIZE)) { in tftp_parse_option_ack()
386 else if(checkprefix(option, TFTP_OPTION_TSIZE)) { in tftp_parse_option_ack()
Dkrb5.c416 if(checkprefix(name, level_names[i].name)) in name_to_level()
Dcookie.c1145 if(checkprefix("Set-Cookie:", line)) { in Curl_cookie_init()
Dsetopt.c823 if(checkprefix("Set-Cookie:", argptr)) in Curl_vsetopt()
/external/curl/src/
Dtool_operhlp.c60 if(checkprefix("http://", url) || checkprefix("https://", url)) in output_expected()
Dtool_formparse.c515 if(!endct && checkprefix("type=", p)) { in get_param_part()
535 else if(checkprefix("filename=", p)) { in get_param_part()
551 else if(checkprefix("headers=", p)) { in get_param_part()
607 else if(checkprefix("encoder=", p)) { in get_param_part()
Dtool_cb_hdr.c133 (cb > 20) && checkprefix("Content-disposition:", str) && in tool_header_cb()