/external/swiftshader/third_party/llvm-7.0/llvm/utils/UpdateTestChecks/ |
D | common.py | 196 for checkprefix in checkprefixes: 197 if checkprefix in printed_prefixes: 201 if func_name not in func_dict[checkprefix] or not func_dict[checkprefix][func_name]: 210 printed_prefixes.append(checkprefix) 211 output_lines.append(check_label_format % (checkprefix, func_name)) 212 func_body = str(func_dict[checkprefix][func_name]).splitlines() 216 output_lines.append('%s %s: %s' % (comment_marker, checkprefix, func_body[0])) 218 output_lines.append('%s %s-NEXT: %s' % (comment_marker, checkprefix, func_line)) 248 comment_marker, checkprefix, func_line)) 251 comment_marker, checkprefix, func_line))
|
/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 | 851 if(checkprefix("Negotiate", auth)) { in Curl_http_input_auth() 877 if(checkprefix("NTLM", auth)) { in Curl_http_input_auth() 901 if(checkprefix("NTLM", auth)) { in Curl_http_input_auth() 924 if(checkprefix("Digest", auth)) { in Curl_http_input_auth() 946 if(checkprefix("Basic", auth)) { in Curl_http_input_auth() 959 if(checkprefix("Bearer", auth)) { in Curl_http_input_auth() 1817 checkprefix("Host:", compare)) in Curl_add_custom_headers() 1821 checkprefix("Content-Type:", compare)) in Curl_add_custom_headers() 1825 checkprefix("Content-Type:", compare)) in Curl_add_custom_headers() 1830 checkprefix("Content-Length:", compare)) in Curl_add_custom_headers() [all …]
|
D | urlapi.c | 696 if(!checkprefix("localhost/", ptr) && in seturl() 697 !checkprefix("127.0.0.1/", ptr)) { in seturl() 778 if(checkprefix("ftp.", hostname)) in seturl() 780 else if(checkprefix("dict.", hostname)) in seturl() 782 else if(checkprefix("ldap.", hostname)) in seturl() 784 else if(checkprefix("imap.", hostname)) in seturl() 786 else if(checkprefix("smtp.", hostname)) in seturl() 788 else if(checkprefix("pop3.", hostname)) in seturl()
|
D | http_proxy.c | 500 if((checkprefix("WWW-Authenticate:", s->line_start) && in CONNECT() 502 (checkprefix("Proxy-authenticate:", s->line_start) && in CONNECT() 517 else if(checkprefix("Content-Length:", s->line_start)) { in CONNECT() 532 else if(checkprefix("Transfer-Encoding:", s->line_start)) { in CONNECT()
|
D | strcase.h | 46 #define checkprefix(a,b) curl_strnequal(a,b,strlen(a)) macro
|
D | http_digest.c | 60 if(!checkprefix("Digest", header)) in Curl_input_digest()
|
D | http_ntlm.c | 75 if(checkprefix("NTLM", header)) { in Curl_input_ntlm()
|
D | rtsp.c | 784 if(checkprefix("CSeq:", header)) { in Curl_rtsp_parseheader() 797 else if(checkprefix("Session:", header)) { in Curl_rtsp_parseheader()
|
D | url.c | 2496 if(checkprefix("https", proxy)) in parse_proxy() 2498 else if(checkprefix("socks5h", proxy)) in parse_proxy() 2500 else if(checkprefix("socks5", proxy)) in parse_proxy() 2502 else if(checkprefix("socks4a", proxy)) in parse_proxy() 2504 else if(checkprefix("socks4", proxy) || checkprefix("socks", proxy)) in parse_proxy() 2506 else if(checkprefix("http:", proxy)) in parse_proxy()
|
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 | security.c | 84 if(checkprefix(name, level_names[i].name)) in name_to_level()
|
D | cookie.c | 1173 if(checkprefix("Set-Cookie:", line)) { in Curl_cookie_init()
|
D | setopt.c | 804 if(checkprefix("Set-Cookie:", argptr)) in vsetopt()
|
/external/curl/src/ |
D | tool_operhlp.c | 58 if(checkprefix("http://", url) || checkprefix("https://", url)) in output_expected()
|
D | tool_formparse.c | 513 if(!endct && checkprefix("type=", p)) { in get_param_part() 533 else if(checkprefix("filename=", p)) { in get_param_part() 549 else if(checkprefix("headers=", p)) { in get_param_part() 606 else if(checkprefix("encoder=", p)) { in get_param_part()
|
D | tool_cb_hdr.c | 105 (cb > 20) && checkprefix("Content-disposition:", str) && in tool_header_cb()
|
D | tool_operate.c | 1647 checkprefix("http", effective_url)) { in operate_do()
|