HomeSort by relevance Sort by last modified time
    Searched full:host_it (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/chrome/browser/predictors/
resource_prefetcher.cc 97 std::map<std::string, int>::iterator host_it = local
99 if (host_it == host_inflight_counts_.end() ||
100 host_it->second <
148 std::map<std::string, int>::iterator host_it = host_inflight_counts_.find( local
150 CHECK_GT(host_it->second, 0);
151 host_it->second -= 1;
152 if (host_it->second == 0)
  /external/chromium_org/net/http/
http_pipelined_host_pool.cc 96 HostMap::iterator host_it = host_map_.find(key); local
97 if (host_it != host_map_.end()) {
98 CHECK(host_it->second);
99 return host_it->second;
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_url_filter.cc 270 std::map<std::string, bool>::const_iterator host_it = host_map_.find(host); local
271 if (host_it != host_map_.end())
272 return host_it->second ? ALLOW : BLOCK;
276 for (std::map<std::string, bool>::const_iterator host_it =
277 host_map_.begin(); host_it != host_map_.end(); ++host_it) {
278 if ((host_it->second == (default_behavior_ == BLOCK)) &&
279 HostMatchesPattern(host, host_it->first)) {
280 return host_it->second ? ALLOW : BLOCK;
  /external/chromium/chrome/browser/sidebar/
sidebar_manager.cc 47 ContentIdToSidebarHostMap::iterator host_it =
49 DCHECK(host_it != it->second.content_id_to_sidebar_host.end());
50 return host_it->second;
59 ContentIdToSidebarHostMap::iterator host_it =
61 if (host_it == it->second.content_id_to_sidebar_host.end())
63 return host_it->second;
  /external/chromium/net/url_request/
url_request_filter.cc 43 HostnameHandlerMap::iterator host_it = local
45 if (host_it != hostname_handler_map_.end())
76 HostnameHandlerMap::iterator host_it = local
78 if (host_it != hostname_handler_map_.end())
  /external/chromium_org/webkit/browser/appcache/
appcache_group.cc 102 for (AppCache::AppCacheHosts::iterator host_it = hosts.begin();
103 host_it != hosts.end(); ++host_it) {
104 (*host_it)->SetSwappableCache(this);
appcache_update_job.cc 526 for (PendingHosts::iterator host_it = hosts.begin();
527 host_it != hosts.end(); ++host_it) {
528 (*host_it)
647 for (PendingHosts::iterator host_it = hosts.begin();
648 host_it != hosts.end(); ++host_it) {
649 (*host_it)->AssociateCompleteCache(cache);
654 for (PendingHosts::iterator host_it = hosts.begin();
655 host_it != hosts.end(); ++host_it)
    [all...]
  /external/chromium_org/net/tools/quic/
spdy_utils.cc 181 BlockIt host_it = header_block.find(kV3Host); local
186 if (host_it == end_it || path_it == end_it || scheme_it == end_it ||
192 url.append(host_it->second);
  /external/chromium_org/net/url_request/
url_request_filter.cc 81 HostnameHandlerMap::iterator host_it = local
83 if (host_it != hostname_handler_map_.end())
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_classifier_delegate_browsertest.cc 196 std::map<std::string, std::string>::const_iterator host_it = local
198 if (host_it == request.headers.end())
202 std::string("http://") + host_it->second + request.relative_url;
phishing_dom_feature_extractor_browsertest.cc 135 std::map<std::string, std::string>::const_iterator host_it = local
137 if (host_it == request.headers.end())
141 std::string("http://") + host_it->second + request.relative_url;

Completed in 1000 milliseconds