Lines Matching refs:has_host
531 let mut has_host = !matches!(host, HostInternal::None); in parse_file() localVariable
533 self.parse_path_start(SchemeType::File, &mut has_host, remaining) in parse_file()
537 self.parse_path(SchemeType::File, &mut has_host, path_start, remaining) in parse_file()
542 if !has_host { in parse_file()
1053 let has_host; in parse_file_host() localVariable
1056 has_host = false; in parse_file_host()
1061 has_host = false; in parse_file_host()
1066 has_host = true; in parse_file_host()
1071 Ok((has_host, host, remaining)) in parse_file_host()
1142 has_host: &mut bool, in parse_path_start()
1158 return self.parse_path(scheme_type, has_host, path_start, remaining); in parse_path_start()
1161 return self.parse_path(scheme_type, has_host, path_start, input); in parse_path_start()
1175 self.parse_path(scheme_type, has_host, path_start, input) in parse_path_start()
1181 has_host: &mut bool, in parse_path()
1277 if *has_host { in parse_path()
1279 *has_host = false; // FIXME account for this in callers in parse_path()