/aosp_15_r20/external/rust/android-crates-io/crates/url/src/ |
D | lib.rs | 170 pub struct Url { struct 197 base_url: Option<&'a Url>, argument 244 pub fn parse(self, input: &str) -> Result<Url, crate::ParseError> { in parse() 256 impl Url { implementation 279 pub fn parse(input: &str) -> Result<Url, crate::ParseError> { in parse() 309 pub fn parse_with_params<I, K, V>(input: &str, iter: I) -> Result<Url, crate::ParseError> in parse_with_params() 360 pub fn join(&self, input: &str) -> Result<Url, crate::ParseError> { in join() 2322 pub fn from_file_path<P: AsRef<Path>>(path: P) -> Result<Url, ()> { in from_file_path() 2359 pub fn from_directory_path<P: AsRef<Path>>(path: P) -> Result<Url, ()> { in from_directory_path() 2382 let Url { in serialize_internal() localVariable [all …]
|
D | quirks.rs | 85 pub fn set_href(url: &mut Url, value: &str) -> Result<(), ParseError> { in set_href() 103 pub fn set_protocol(url: &mut Url, mut new_protocol: &str) -> Result<(), ()> { in set_protocol() 120 pub fn set_username(url: &mut Url, new_username: &str) -> Result<(), ()> { in set_username() 132 pub fn set_password(url: &mut Url, new_password: &str) -> Result<(), ()> { in set_password() 148 pub fn set_host(url: &mut Url, new_host: &str) -> Result<(), ()> { in set_host() 201 pub fn set_hostname(url: &mut Url, new_hostname: &str) -> Result<(), ()> { in set_hostname() 243 pub fn set_port(url: &mut Url, new_port: &str) -> Result<(), ()> { in set_port() 272 pub fn set_pathname(url: &mut Url, new_pathname: &str) { in set_pathname() 295 pub fn set_search(url: &mut Url, new_search: &str) { in set_search() 309 pub fn set_hash(url: &mut Url, new_hash: &str) { in set_hash()
|
D | slicing.rs | 12 impl Index<RangeFull> for Url { implementation 19 impl Index<RangeFrom<Position>> for Url { implementation 26 impl Index<RangeTo<Position>> for Url { implementation 33 impl Index<Range<Position>> for Url { implementation 100 impl Url { implementation
|
D | parser.rs | 362 pub fn parse_url(mut self, input: &str) -> ParseResult<Url> { in parse_url() 413 fn parse_with_scheme(mut self, input: Input<'_>) -> ParseResult<Url> { in parse_with_scheme() 464 ) -> ParseResult<Url> { in parse_non_special() 500 base_file_url: Option<&Url>, in parse_file() 501 ) -> ParseResult<Url> { in parse_file() 711 base_url: &Url, in parse_relative() 712 ) -> ParseResult<Url> { in parse_relative() 833 ) -> ParseResult<Url> { in after_double_slash() 1359 ) -> ParseResult<Url> { in with_query_and_fragment() 1443 fn fragment_only(mut self, base_url: &Url, mut input: Input<'_>) -> ParseResult<Url> { in fragment_only()
|
/aosp_15_r20/external/rust/android-crates-io/crates/maybe-async/examples/ |
D | service_client.rs | 7 type Url = &'static str; typedef 16 async fn request(method: Method, url: Url, data: String) -> Response; in request() 18 async fn post(url: Url, data: String) -> Response { in post() 22 async fn delete(url: Url, data: String) -> Response { in delete() 35 fn request(method: Method, url: Url, data: String) -> Response { in request() 45 async fn request(method: Method, url: Url, data: String) -> Response { in request()
|
/aosp_15_r20/external/rust/android-crates-io/crates/miette-derive/src/ |
D | url.rs | 18 pub enum Url { enum 23 impl Parse for Url { implementation 66 impl Url { implementation
|
D | diagnostic_arg.rs | 14 Url(Url), enumerator
|
/aosp_15_r20/external/rust/android-crates-io/crates/rusqlite/src/types/ |
D | url.rs | 7 impl ToSql for Url { implementation 15 impl FromSql for Url { implementation 39 fn get_url(db: &Connection, id: i64) -> Result<Url> { in get_url()
|
/aosp_15_r20/external/rust/android-crates-io/crates/url/tests/ |
D | data.rs | 164 fn check_invariants(url: &Url, name: &str, comment: Option<&str>) -> bool { in check_invariants() 214 fn get<'a>(url: &'a Url, attr: &str) -> &'a str { in get() 231 fn set<'a>(url: &'a mut Url, attr: &str, new: &str) { in set()
|
D | unit.rs | 209 fn check_eq(a: &Url, b: &Url) { in test_equality() 219 fn url(s: &str) -> Url { in test_equality()
|
/aosp_15_r20/external/openscreen/util/ |
H A D | url.cc | 16 Url::Url(const std::string& source) { in Url() function in openscreen::Url 79 Url::Url(Url&& other) noexcept in Url() function in openscreen::Url
|
/aosp_15_r20/external/openthread/src/lib/url/ |
H A D | url.hpp | 50 namespace Url { namespace 56 class Url : public otUrl class
|
H A D | url.cpp | 38 namespace Url { namespace 40 Url::Url(void) in Url() function in ot::Url::Url
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Debuginfod/ |
H A D | HTTPClient.cpp | 27 HTTPRequest::HTTPRequest(StringRef Url) { this->Url = Url.str(); } in HTTPRequest() 110 SmallString<128> Url = Request.Url; in perform() local
|
/aosp_15_r20/external/google-cloud-java/java-apigee-connect/proto-google-cloud-apigee-connect-v1/src/main/java/com/google/cloud/apigeeconnect/v1/ |
H A D | Url.java | 32 public final class Url extends com.google.protobuf.GeneratedMessageV3 class 38 private Url(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Url() method in Url 42 private Url() { in Url() method in Url
|
/aosp_15_r20/external/rust/android-crates-io/crates/tungstenite/src/ |
D | client.rs | 244 impl<'a> IntoClientRequest for &'a Url { implementation 250 impl IntoClientRequest for Url { implementation
|
/aosp_15_r20/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/ |
H A D | RequiresUnreferencedCodeAttribute.cs | 69 public string Url { get; set; } property in System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute
|
/aosp_15_r20/external/protobuf/csharp/src/Google.Protobuf/Compatibility/ |
H A D | RequiresUnreferencedCodeAttribute.cs | 69 public string Url { get; set; } property in System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute
|
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/integration/servlets/ |
H A D | HelloServlet.java | 10 public static final String Url; field in HelloServlet
|
H A D | DeflateServlet.java | 13 public static final String Url; field in DeflateServlet
|
H A D | InterruptedServlet.java | 11 public static final String Url; field in InterruptedServlet
|
H A D | RedirectServlet.java | 11 public static final String Url; field in RedirectServlet
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Debuginfod/ |
H A D | HTTPClient.h | 29 SmallString<128> Url; member
|
/aosp_15_r20/external/cronet/testing/libfuzzer/proto/ |
H A D | url.proto | 25 message Url { message
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Debuginfod/ |
D | HTTPClient.h | 31 SmallString<128> Url; member
|