Home
last modified time | relevance | path

Searched refs:has_authority (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/url/src/
Dslicing.rs109 if self.has_authority() { in index()
121 if self.has_authority() && self.byte_at(self.username_end) == b':' { in index()
130 if self.has_authority() && self.byte_at(self.username_end) == b':' { in index()
Dlib.rs811 pub fn has_authority(&self) -> bool { in has_authority() method
870 if self.has_authority() && self.username_end > self.scheme_end + scheme_separator_len { in username()
904 if self.has_authority() in password()
1856 if !self.has_authority() { in set_host_internal()
2234 (new_scheme_type.is_file() && self.has_authority()) in set_scheme()
Dparser.rs851 let has_authority = before_authority != self.serialization.len(); in after_double_slash() localVariable
856 if host == HostInternal::None && has_authority { in after_double_slash()