Searched refs:checkprefix (Results 1 – 18 of 18) sorted by relevance
/external/llvm-project/llvm/utils/UpdateTestChecks/ |
D | common.py | 442 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/ |
D | update_llc_test_checks.py | 103 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))
|
D | update_test_checks.py | 197 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/ |
D | http.c | 903 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 …]
|
D | urlapi.c | 742 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()
|
D | http_proxy.c | 489 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()
|
D | strcase.h | 46 #define checkprefix(a,b) curl_strnequal(a,b,strlen(a)) macro
|
D | http_digest.c | 61 if(!checkprefix("Digest", header)) in Curl_input_digest()
|
D | http_ntlm.c | 75 if(checkprefix("NTLM", header)) { in Curl_input_ntlm()
|
D | rtsp.c | 764 if(checkprefix("CSeq:", header)) { in Curl_rtsp_parseheader() 777 else if(checkprefix("Session:", header)) { in Curl_rtsp_parseheader()
|
D | curl_ntlm_wb.c | 339 if(!checkprefix("NTLM", header)) in Curl_input_ntlm_wb()
|
D | tftp.c | 354 if(checkprefix(option, TFTP_OPTION_BLKSIZE)) { in tftp_parse_option_ack() 386 else if(checkprefix(option, TFTP_OPTION_TSIZE)) { in tftp_parse_option_ack()
|
D | krb5.c | 416 if(checkprefix(name, level_names[i].name)) in name_to_level()
|
D | cookie.c | 1145 if(checkprefix("Set-Cookie:", line)) { in Curl_cookie_init()
|
D | setopt.c | 823 if(checkprefix("Set-Cookie:", argptr)) in Curl_vsetopt()
|
/external/curl/src/ |
D | tool_operhlp.c | 60 if(checkprefix("http://", url) || checkprefix("https://", url)) in output_expected()
|
D | tool_formparse.c | 515 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()
|
D | tool_cb_hdr.c | 133 (cb > 20) && checkprefix("Content-disposition:", str) && in tool_header_cb()
|