/curl/packages/vms/ |
H A D | compare_curl_source.com | 99 $ mydir = f$parse(mydefault,,,"DIRECTORY") 103 $ mydev = f$parse(mydefault,,,"DEVICE") 122 $ ref_root_dir = f$parse(resultd,,,"DIRECTORY") 183 $ set proc/parse=extended 190 $ ref_dev = f$parse(ref_spec,,,"DEVICE") 191 $ ref_dir = f$parse(ref_spec,,,"DIRECTORY") 193 $ ref_name = f$parse(ref_spec,,,"NAME") 194 $ ref_type = f$parse(ref_spec,,,"TYPE") 240 $ wrk_name = f$parse(wrk_spec,,,"NAME") 241 $ wrk_type = f$parse(wrk_spec,,,"TYPE") [all …]
|
H A D | build_gnv_curl_pcsi_desc.com | 301 $ filedir = f$parse(pathname,,,"DIRECTORY") 307 $ filetype = f$parse(pathname,,,"TYPE") 309 $ filename = f$parse(pathname,,,"NAME") 355 $ filetype = f$parse(pathname,,,"TYPE") 356 $ filename = f$parse(pathname,,,"NAME") + filetype 361 $ filetype = f$parse(pathname,,,"TYPE") 362 $ filename = f$parse(pathname,,,"NAME") + filetype 415 $ filetype = f$edit(f$parse(filename,,,"TYPE"), "upcase") 430 $ filedir = f$edit(f$parse(filename,,,"DIRECTORY"), "lowercase")
|
H A D | build_vms.com | 169 $ proc_dev = f$parse(proc, , , "DEVICE") 170 $ proc_dir = f$parse(proc, , , "DIRECTORY") 171 $ proc_name = f$parse(proc, , , "NAME") 172 $ proc_type = f$parse(proc, , , "TYPE") 175 $! Have to manually parse the device for a search list. 176 $! Can not use the f$parse() as it will return the first name function 234 $! There is no 7.4, so that simplifies the parse a bit. 950 f$edit(f$parse(file, , , "NAME", "SYNTAX_ONLY"), "UPCASE") + - 957 $ objfile = f$parse("''objdir'.OBJ;", file)
|
H A D | backup_gnv_curl_src.com | 44 $ set proc/parse=extended 103 $ my_dir = f$parse(current_default,,,"DIRECTORY") - "[" - "<" - ">" - "]"
|
H A D | curl_startup.com | 43 $ zlib_startup = f$parse("gnv$zlib_startup.com;0", myproc,,,)
|
H A D | pcsi_product_gnv_curl.com | 140 $ my_dir = f$parse(current_default,,,"DIRECTORY") - "[" - "<" - ">" - "]"
|
H A D | stage_curl_install.com | 48 $ set proc/parse=extended
|
H A D | config_h.com | 58 $my_proc_file = f$parse(my_proc,,,"NAME") + f$parse(my_proc,,,"TYPE") 183 $decc_rtldef = f$parse("decc$rtldef","sys$library:.tlb;0") 184 $decc_starletdef = f$parse("sys$starlet_c","sys$library:.tlb;0") 185 $decc_shr = f$parse("decc$shr","sys$share:.exe;0")
|
H A D | gnv_link_curl.com | 41 $! There is no 7.4, so that simplifies the parse a bit. 435 $! Extended parse style requires special quoting
|
/curl/scripts/ |
H A D | cmakelint.sh | 40 elif git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
|
H A D | maketgz | 161 git rev-parse HEAD >docs/tarball-commit.txt.dist
|
/curl/docs/cmdline-opts/ |
H A D | list-only.md | 21 useful if the user wants to machine-parse the contents of an FTP directory 30 line. This is especially useful if the user wants to machine-parse the
|
H A D | retry-all-errors.md | 30 file, which are not reset. We strongly suggest you do not parse or record
|
/curl/tests/data/ |
H A D | test356 | 39 parse incoming Alt-Svc and save to file
|
H A D | test1538 | 122 e87: Unable to parse FTP file list
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_DOH_URL.md | 96 Note that curl_easy_setopt(3) does immediately parse the given string so
|
H A D | CURLOPT_COOKIEFILE.md | 35 It also enables the cookie engine, making libcurl parse and send cookies on
|
H A D | CURLOPT_QUOTE.md | 51 libcurl does not inspect, parse or "understand" the commands passed to the
|
H A D | CURLOPT_URL.md | 145 Note that curl_easy_setopt(3) does not parse the given string so given a
|
/curl/docs/libcurl/ |
H A D | curl_url_set.md | 63 when it gets populated as a result of a full URL parse. Beware. If done so, 86 supported built-in. To make libcurl parse URLs generically even for schemes it 206 If guessing is not allowed and there is no default scheme set, trying to parse
|
H A D | curl_getdate.md | 123 This function returns -1 when it fails to parse the date string. Otherwise it
|
H A D | libcurl-ws.md | 73 the user of this knows WebSocket and can parse and figure out the data all by
|
H A D | libcurl-errors.md | 82 The server sent data libcurl could not parse. This error code was known as 113 fails to parse that line, this return code is passed back. 433 Unable to parse FTP file list (during FTP wildcard downloading).
|
/curl/src/ |
H A D | tool_getparam.c | 1032 const char *parse = NULL; in getparameter() local 1112 parse = flag; in getparameter() 1121 a = findshortopt(*parse); in getparameter() 1131 if(!longopt && parse[1]) { in getparameter() 1132 nextarg = (char *)&parse[1]; /* this is the actual extra parameter */ in getparameter() 2679 } while(!longopt && !singleopt && *++parse && !*usedarg && !err); in getparameter()
|
/curl/tests/http/testenv/ |
H A D | curl.py | 41 from urllib.parse import urlparse
|