Home
last modified time | relevance | path

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

/external/rust/crates/url/src/
Dquirks.rs107 if url.cannot_be_a_base() { in set_host()
163 if url.cannot_be_a_base() { in set_hostname()
234 if url.cannot_be_a_base() { in set_pathname()
Dlib.rs402 if self.cannot_be_a_base() { in make_relative()
842 pub fn cannot_be_a_base(&self) -> bool { in cannot_be_a_base() method
1551 let cannot_be_a_base = self.cannot_be_a_base(); in set_path() localVariable
1555 if cannot_be_a_base { in set_path()
1574 if self.cannot_be_a_base() { in path_segments_mut()
1791 if self.cannot_be_a_base() { in set_host()
1929 if self.cannot_be_a_base() { in set_ip_host()
2528 .field("cannot_be_a_base", &self.cannot_be_a_base()) in fmt()
Dparser.rs384 } else if base_url.cannot_be_a_base() { in parse_url()
451 debug_assert!(!base_url.cannot_be_a_base()); in parse_with_scheme()
/external/rust/crates/url/tests/
Dunit.rs403 Url::parse("mailto:").unwrap().cannot_be_a_base(); in issue_241()
608 assert!(no_base_url.cannot_be_a_base()); in test_no_base_url()