Home
last modified time | relevance | path

Searched refs:percent_decode (Results 1 – 25 of 651) sorted by relevance

12345678910>>...27

/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/stdlib/test/
H A Duri_string_SUITE.erl1054 uri_string:percent_decode(
1059 uri_string:percent_decode(
1064 uri_string:percent_decode(
1083 uri_string:percent_decode(
1087 uri_string:percent_decode(
1091 uri_string:percent_decode(
1095 uri_string:percent_decode(
1099 uri_string:percent_decode(
1103 uri_string:percent_decode(
1107 uri_string:percent_decode(
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/stdlib/test/
H A Duri_string_SUITE.erl1054 uri_string:percent_decode(
1059 uri_string:percent_decode(
1064 uri_string:percent_decode(
1083 uri_string:percent_decode(
1087 uri_string:percent_decode(
1091 uri_string:percent_decode(
1095 uri_string:percent_decode(
1099 uri_string:percent_decode(
1103 uri_string:percent_decode(
1107 uri_string:percent_decode(
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/stdlib/test/
H A Duri_string_SUITE.erl1054 uri_string:percent_decode(
1059 uri_string:percent_decode(
1064 uri_string:percent_decode(
1083 uri_string:percent_decode(
1087 uri_string:percent_decode(
1091 uri_string:percent_decode(
1095 uri_string:percent_decode(
1099 uri_string:percent_decode(
1103 uri_string:percent_decode(
1107 uri_string:percent_decode(
[all …]
/dports/lang/erlang/otp-OTP-24.1.7/lib/stdlib/test/
H A Duri_string_SUITE.erl1054 uri_string:percent_decode(
1059 uri_string:percent_decode(
1064 uri_string:percent_decode(
1083 uri_string:percent_decode(
1087 uri_string:percent_decode(
1091 uri_string:percent_decode(
1095 uri_string:percent_decode(
1099 uri_string:percent_decode(
1103 uri_string:percent_decode(
1107 uri_string:percent_decode(
[all …]
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/stdlib/test/
H A Duri_string_SUITE.erl1054 uri_string:percent_decode(
1059 uri_string:percent_decode(
1064 uri_string:percent_decode(
1083 uri_string:percent_decode(
1087 uri_string:percent_decode(
1091 uri_string:percent_decode(
1095 uri_string:percent_decode(
1099 uri_string:percent_decode(
1103 uri_string:percent_decode(
1107 uri_string:percent_decode(
[all …]
/dports/www/monolith/monolith-2.6.1/src/tests/url/
H A Dpercent_decode.rs15 url::percent_decode(str!( in decode_unicode_characters()
25 url::percent_decode(str!("file:///tmp/space%20here/test%231.html")), in decode_file_url()
33 url::percent_decode(str!( in plus_sign()
H A Dmod.rs5 mod percent_decode; module
/dports/www/trafficserver/trafficserver-9.1.1/plugins/experimental/uri_signing/
H A Dnormalize.c134 percent_decode(const char *uri, int uri_ct, char *decoded_uri, bool lower) in percent_decode() function
288 comp_ct = percent_decode(comp_start, comp_ct, write_buffer, false); in normalize_uri()
312 comp_ct = percent_decode(comp_start, comp_ct, write_buffer, true); in normalize_uri()
348 comp_ct = percent_decode(comp_start, comp_ct, path_buffer, false); in normalize_uri()
370 comp_ct = percent_decode(comp_start, comp_ct, write_buffer, false); in normalize_uri()
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/
H A Draw_str.rs106 pub fn percent_decode(&self) -> Result<Cow<'_, str>, Utf8Error> { in percent_decode() method
107 percent_encoding::percent_decode(self.as_bytes()).decode_utf8() in percent_decode()
140 percent_encoding::percent_decode(self.as_bytes()).decode_utf8_lossy() in percent_decode_lossy()
165 .percent_decode() in url_decode()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/net/
H A Dchrome_loader.rs8 use url::percent_encoding::percent_decode;
19 match percent_decode(segment.as_bytes()).decode_utf8() { in resolve_chrome_url()
H A Ddata_loader.rs9 use url::percent_encoding::percent_decode;
44 let mut bytes = percent_decode(parts[1].as_bytes()).collect::<Vec<_>>(); in decode()
/dports/mail/mimedefang/mimedefang-2.84/
H A Dmimedefang.c1855 percent_decode(code); in eom()
1856 percent_decode(dsn); in eom()
1877 percent_decode(code); in eom()
1878 percent_decode(dsn); in eom()
1910 percent_decode(rptr+1); in eom()
1990 percent_decode(rptr+1); in eom()
2005 percent_decode(rptr+1); in eom()
2015 percent_decode(rptr+1); in eom()
2909 percent_decode(code); in set_dsn()
2910 percent_decode(dsn); in set_dsn()
[all …]
/dports/print/py-frescobaldi/frescobaldi-3.1.3/frescobaldi_app/
H A Dtextedit.py65 lat1 = percent_decode(lat1)
74 def percent_decode(s): function
/dports/devel/py-filedepot/filedepot-0.8.0/depot/
H A D_compat.py30 def percent_decode(string): function
51 def percent_decode(string): function
/dports/devel/rebar3/rebar3-3.17.0/src/
H A Drebar_uri.erl6 append_path/2, percent_decode/1
104 -spec percent_decode(URI) -> Result when
109 percent_decode(URIMap) when is_map(URIMap)-> function
126 percent_decode(URI) when is_list(URI) orelse function
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/uri/
H A Duri.rs191 pub fn percent_decode(string: &[u8]) -> Result<Cow<'_, str>, Utf8Error> { in percent_decode() method
192 let decoder = percent_encoding::percent_decode(string); in percent_decode()
210 let decoder = percent_encoding::percent_decode(string); in percent_decode_lossy()
/dports/www/castor/castor-0.8.16/src/gopher/
H A Dclient.rs1 use percent_encoding::percent_decode;
48 let url = percent_decode(url.as_bytes()).decode_utf8().unwrap(); in get_data()
/dports/www/monolith/monolith-2.6.1/src/
H A Durl.rs60 let text: String = percent_decode(data); in parse_data_url()
70 pub fn percent_decode(input: String) -> String { in percent_decode() function
/dports/www/zola/zola-0.15.2/components/utils/src/
H A Dsite.rs1 use percent_encoding::percent_decode;
42 let decoded = percent_decode(parts[0].as_bytes()).decode_utf8_lossy().to_string(); in resolve_internal_link()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/net/rusoto/src/
H A Ds3url.rs11 use percent_encoding::{percent_decode, percent_encode, AsciiSet, CONTROLS};
70 let mut object = percent_decode(o.as_bytes()) in parse_s3_url()
/dports/www/websocat/websocat-1.9.0/cargo-crates/http-bytes-0.1.0/src/
H A Dfuzztest.rs70 … let pda : Vec<u8> = percent_encoding::percent_decode(a.uri().to_string().as_bytes()).collect(); in compare_requests()
71 … let pdb : Vec<u8> = percent_encoding::percent_decode(b.uri().to_string().as_bytes()).collect(); in compare_requests()
/dports/net/proby/proby-1.0.2/cargo-crates/libnghttp2-sys-0.1.4+1.41.0/nghttp2/src/
H A Dutil_test.cc155 CU_ASSERT("foobar" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
159 CU_ASSERT("f%6" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
163 CU_ASSERT("f%" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
167 CU_ASSERT("foobar" == util::percent_decode( in test_util_percent_decode()
171 util::percent_decode(balloc, StringRef::from_lit("%66%6"))); in test_util_percent_decode()
173 CU_ASSERT("f%" == util::percent_decode(balloc, StringRef::from_lit("%66%"))); in test_util_percent_decode()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/libnghttp2-sys-0.1.6+1.43.0/nghttp2/src/
H A Dutil_test.cc155 CU_ASSERT("foobar" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
159 CU_ASSERT("f%6" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
163 CU_ASSERT("f%" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
167 CU_ASSERT("foobar" == util::percent_decode( in test_util_percent_decode()
171 util::percent_decode(balloc, StringRef::from_lit("%66%6"))); in test_util_percent_decode()
173 CU_ASSERT("f%" == util::percent_decode(balloc, StringRef::from_lit("%66%"))); in test_util_percent_decode()
/dports/lang/rust/rustc-1.58.1-src/vendor/libnghttp2-sys/nghttp2/src/
H A Dutil_test.cc155 CU_ASSERT("foobar" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
159 CU_ASSERT("f%6" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
163 CU_ASSERT("f%" == util::percent_decode(std::begin(s), std::end(s))); in test_util_percent_decode()
167 CU_ASSERT("foobar" == util::percent_decode( in test_util_percent_decode()
171 util::percent_decode(balloc, StringRef::from_lit("%66%6"))); in test_util_percent_decode()
173 CU_ASSERT("f%" == util::percent_decode(balloc, StringRef::from_lit("%66%"))); in test_util_percent_decode()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/libnghttp2-sys-0.1.7+1.45.0/nghttp2/src/
H A Dasio_common.cc137 std::string percent_decode(const std::string &s) { in percent_decode() function
138 return util::percent_decode(std::begin(s), std::end(s)); in percent_decode()

12345678910>>...27