Searched refs:host_it (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetcher.cc97 std::map<std::string, size_t>::iterator host_it = local
99 if (host_it == host_inflight_counts_.end() ||
100 host_it->second <
150 std::map<std::string, size_t>::iterator host_it = host_inflight_counts_.find( local
152 CHECK_GT(host_it->second, 0U);
153 host_it->second -= 1;
154 if (host_it->second == 0)
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_url_filter.cc279 std::map<std::string, bool>::const_iterator host_it = host_map_.find(host); local
280 if (host_it != host_map_.end())
281 return host_it->second ? ALLOW : BLOCK;
285 for (std::map<std::string, bool>::const_iterator host_it =
286 host_map_.begin(); host_it != host_map_.end(); ++host_it) {
287 if ((host_it->second == (default_behavior_ == BLOCK)) &&
288 HostMatchesPattern(host, host_it->first)) {
289 return host_it->second ? ALLOW : BLOCK;
/external/chromium_org/content/browser/appcache/
H A Dappcache_group.cc102 for (AppCache::AppCacheHosts::iterator host_it = hosts.begin();
103 host_it != hosts.end(); ++host_it) {
104 (*host_it)->SetSwappableCache(this);
H A Dappcache_update_job.cc632 for (PendingHosts::iterator host_it = hosts.begin();
633 host_it != hosts.end(); ++host_it) {
634 (*host_it)
790 for (PendingHosts::iterator host_it = hosts.begin();
791 host_it != hosts.end(); ++host_it) {
792 (*host_it)->AssociateCompleteCache(cache);
797 for (PendingHosts::iterator host_it = hosts.begin();
798 host_it !
[all...]
/external/chromium_org/net/url_request/
H A Durl_request_filter.cc67 HostnameInterceptorMap::const_iterator host_it = local
69 if (host_it != hostname_interceptor_map_.end())
/external/chromium_org/net/tools/quic/
H A Dspdy_utils.cc181 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/chrome/renderer/safe_browsing/
H A Dphishing_dom_feature_extractor_browsertest.cc143 std::map<std::string, std::string>::const_iterator host_it = local
145 if (host_it == request.headers.end())
149 std::string("http://") + host_it->second + request.relative_url;
H A Dphishing_classifier_delegate_browsertest.cc202 std::map<std::string, std::string>::const_iterator host_it = local
204 if (host_it == request.headers.end())
208 std::string("http://") + host_it->second + request.relative_url;

Completed in 191 milliseconds