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

  /external/chromium_org/chrome/browser/search_engines/
search_host_to_urls_map_unittest.cc 47 std::string new_host = "example.com"; local
49 data.SetURL("http://" + new_host + "/");
54 ASSERT_EQ(&new_t_url, provider_map_->GetTemplateURLForHost(new_host));
  /external/chromium_org/ui/views/widget/desktop_aura/
x11_desktop_handler.cc 120 DesktopRootWindowHostX11* new_host = local
122 if (new_host)
123 new_host->HandleNativeWidgetActivationChanged(true);
  /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...]
  /external/chromium_org/chrome/browser/
chrome_content_browser_client.cc 319 std::string new_host; local
322 new_host = old_path.substr(1);
324 new_host = old_path.substr(1, separator - 1);
330 if (new_host.empty())
333 *url = ReplaceURLHostAndPath(*url, new_host, new_path);
    [all...]
  /external/chromium_org/net/http/
transport_security_state.cc 234 std::string new_host; local
235 if (!DNSDomainFromDot(host, &new_host)) {
241 for (size_t i = 0; new_host[i]; i += new_host[i] + 1) {
242 const unsigned label_length = static_cast<unsigned>(new_host[i]);
248 if (!IsSTD3ASCIIValidCharacter(new_host[i + 1 + j]))
251 new_host[i + 1 + j] = tolower(new_host[i + 1 + j]);
255 if (new_host[i + 1] == '-' ||
256 new_host[i + label_length] == '-')
    [all...]

Completed in 333 milliseconds