Home
last modified time | relevance | path

Searched refs:PercentDecode (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/percent-encoding/
Dlib.rs313 pub fn percent_decode_str(input: &str) -> PercentDecode { in percent_decode_str() argument
336 pub fn percent_decode(input: &[u8]) -> PercentDecode { in percent_decode() argument
337 PercentDecode { in percent_decode()
344 pub struct PercentDecode<'a> { struct
356 impl<'a> Iterator for PercentDecode<'a> { argument
375 impl<'a> From<PercentDecode<'a>> for Cow<'a, [u8]> {
376 fn from(iter: PercentDecode<'a>) -> Self { in from()
384 impl<'a> PercentDecode<'a> { implementation
394 decoded.extend(PercentDecode { bytes: bytes_iter }); in if_any()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/uri/
Duri_parser.cc41 std::string PercentDecode(absl::string_view str) { in PercentDecode() function
111 PercentDecode(remaining.substr(0, remaining.find_first_of("/?#"))); in Parse()
117 path = PercentDecode(remaining.substr(0, remaining.find_first_of("?#"))); in Parse()
136 query_param_pairs.push_back({PercentDecode(possible_kv.first), in Parse()
137 PercentDecode(possible_kv.second)}); in Parse()
148 fragment = PercentDecode(remaining); in Parse()
/external/rust/crates/url/src/
Dparser.rs146 PercentDecode => "expected 2 hex digits after %",
1495 vfn(SyntaxViolation::PercentDecode) in check_url_code_point()
/external/rust/crates/url/tests/
Dunit.rs800 ("http://mozilla.org/%1", PercentDecode, "expected 2 hex digits after %"), in test_syntax_violation_callback_types()