HomeSort by relevance Sort by last modified time
    Searched defs:new_host (Results 1 - 2 of 2) sorted by null

  /external/chromium/chrome/browser/search_engines/
search_host_to_urls_map_unittest.cc 52 std::string new_host = "example.com"; local
54 new_t_url.SetURL("http://" + new_host + "/", 0, 0);
58 ASSERT_EQ(&new_t_url, provider_map_->GetTemplateURLForHost(new_host));
80 std::string new_host = "example.com"; local
82 new_values.SetURL("http://" + new_host + "/", 0, 0);
87 ASSERT_EQ(&t_urls_[0], provider_map_->GetTemplateURLForHost(new_host));
  /external/chromium/net/base/
transport_security_state.cc 455 std::string new_host; local
456 if (!DNSDomainFromDot(host, &new_host)) {
462 for (size_t i = 0; new_host[i]; i += new_host[i] + 1) {
463 const unsigned label_length = static_cast<unsigned>(new_host[i]);
469 if (!IsSTD3ASCIIValidCharacter(new_host[i + 1 + j]))
472 new_host[i + 1 + j] = tolower(new_host[i + 1 + j]);
476 if (new_host[i + 1] == '-' ||
477 new_host[i + label_length] == '-')
    [all...]

Completed in 170 milliseconds