Home
last modified time | relevance | path

Searched defs:Url (Results 1 – 10 of 10) sorted by relevance

/external/rust/crates/url/src/
Dquirks.rs42 pub fn set_href(url: &mut Url, value: &str) -> Result<(), ParseError> { in set_href()
60 pub fn set_protocol(url: &mut Url, mut new_protocol: &str) -> Result<(), ()> { in set_protocol()
77 pub fn set_username(url: &mut Url, new_username: &str) -> Result<(), ()> { in set_username()
89 pub fn set_password(url: &mut Url, new_password: &str) -> Result<(), ()> { in set_password()
105 pub fn set_host(url: &mut Url, new_host: &str) -> Result<(), ()> { in set_host()
162 pub fn set_hostname(url: &mut Url, new_hostname: &str) -> Result<(), ()> { in set_hostname()
204 pub fn set_port(url: &mut Url, new_port: &str) -> Result<(), ()> { in set_port()
233 pub fn set_pathname(url: &mut Url, new_pathname: &str) { in set_pathname()
256 pub fn set_search(url: &mut Url, new_search: &str) { in set_search()
270 pub fn set_hash(url: &mut Url, new_hash: &str) { in set_hash()
Dslicing.rs12 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 { impl
Dlib.rs166 pub struct Url { struct
193 base_url: Option<&'a Url>, argument
240 pub fn parse(self, input: &str) -> Result<Url, crate::ParseError> { in parse()
252 impl Url { impl
275 pub fn parse(input: &str) -> Result<Url, crate::ParseError> { in parse()
305 pub fn parse_with_params<I, K, V>(input: &str, iter: I) -> Result<Url, crate::ParseError> in parse_with_params()
356 pub fn join(&self, input: &str) -> Result<Url, crate::ParseError> { in join()
2303 pub fn from_file_path<P: AsRef<Path>>(path: P) -> Result<Url, ()> { in from_file_path()
2340 pub fn from_directory_path<P: AsRef<Path>>(path: P) -> Result<Url, ()> { in from_directory_path()
2363 let Url { in serialize_internal() localVariable
[all …]
Dparser.rs374 pub fn parse_url(mut self, input: &str) -> ParseResult<Url> { in parse_url()
425 fn parse_with_scheme(mut self, input: Input<'_>) -> ParseResult<Url> { in parse_with_scheme()
476 ) -> ParseResult<Url> { in parse_non_special()
512 base_file_url: Option<&Url>, in parse_file()
513 ) -> ParseResult<Url> { in parse_file()
723 base_url: &Url, in parse_relative()
724 ) -> ParseResult<Url> { in parse_relative()
845 ) -> ParseResult<Url> { in after_double_slash()
1373 ) -> ParseResult<Url> { in with_query_and_fragment()
1456 fn fragment_only(mut self, base_url: &Url, mut input: Input<'_>) -> ParseResult<Url> { in fragment_only()
/external/rust/crates/rusqlite/src/types/
Durl.rs7 impl ToSql for Url { implementation
14 impl FromSql for Url { implementation
38 fn get_url(db: &Connection, id: i64) -> Result<Url> { in get_url()
/external/openscreen/util/
Durl.cc16 Url::Url(const std::string& source) { in Url() function in openscreen::Url
79 Url::Url(Url&& other) noexcept in Url() function in openscreen::Url
/external/rust/crates/url/tests/
Ddata.rs132 fn check_invariants(url: &Url, name: &str, comment: Option<&str>) -> bool { in check_invariants()
177 fn get<'a>(url: &'a Url, attr: &str) -> &'a str { in get()
194 fn set<'a>(url: &'a mut Url, attr: &str, new: &str) { in set()
Dunit.rs201 fn check_eq(a: &Url, b: &Url) { in test_equality()
211 fn url(s: &str) -> Url { in test_equality()
/external/libtextclassifier/native/annotator/
Dcollections.h137 static const std::string& Url() { in Url() function
/external/llvm-project/llvm/tools/dsymutil/
DCFBundle.cpp89 CFBundle(CFURLRef Url) in CFBundle()