Home | History | Annotate | Download | only in base

Lines Matching refs:ip_literal

2091 bool ParseIPLiteralToNumber(const std::string& ip_literal,
2093 // |ip_literal| could be either a IPv4 or an IPv6 literal. If it contains
2095 if (ip_literal.find(':') != std::string::npos) {
2097 std::string host_brackets = "[" + ip_literal + "]";
2109 url_parse::Component host_comp(0, ip_literal.size());
2112 ip_literal.data(), host_comp, &(*ip_number)[0], &num_components);