HomeSort by relevance Sort by last modified time
    Searched refs:out_host (Results 1 - 5 of 5) sorted by null

  /external/chromium/googleurl/src/
url_canon_host.cc 321 host_info->out_host = url_parse::Component();
362 host_info->out_host = url_parse::MakeRange(output_begin, output->length());
370 url_parse::Component* out_host) {
373 *out_host = host_info.out_host;
380 url_parse::Component* out_host) {
383 *out_host = host_info.out_host;
url_canon_ip.cc 182 // part of an IPv4 address) to the output, and updating |*out_host| to
186 url_parse::Component* out_host) {
187 out_host->begin = output->length();
198 out_host->len = output->length() - out_host->begin;
271 AppendIPv4Address(address, output, &host_info->out_host);
624 host_info->out_host.begin = output->length();
662 host_info->out_host.len = output->length() - host_info->out_host.begin;
url_canon.h 333 CanonHostInfo() : family(NEUTRAL), num_ipv4_components(0), out_host() {}
361 url_parse::Component out_host; member in struct:url_canon::CanonHostInfo
372 url_parse::Component* out_host);
376 url_parse::Component* out_host);
    [all...]
url_canon_unittest.cc 469 host_info.out_host.begin);
470 EXPECT_EQ(host_cases[i].expected_component.len, host_info.out_host.len);
494 host_info.out_host.begin);
495 EXPECT_EQ(host_cases[i].expected_component.len, host_info.out_host.len);
593 EXPECT_EQ(cases[i].expected_component.begin, host_info.out_host.begin);
594 EXPECT_EQ(cases[i].expected_component.len, host_info.out_host.len);
612 EXPECT_EQ(cases[i].expected_component.begin, host_info.out_host.begin);
613 EXPECT_EQ(cases[i].expected_component.len, host_info.out_host.len);
    [all...]
  /external/chromium/net/base/
net_util.cc 911 if (host_info->out_host.is_nonempty() &&
915 DCHECK_EQ(host_info->out_host.len, static_cast<int>(canon_host.length()));
    [all...]

Completed in 545 milliseconds