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

  /external/chromium_org/components/google/core/browser/
google_util.cc 49 size_t tld_length = net::registry_controlled_domains::GetRegistryLength( local
53 if ((tld_length == 0) || (tld_length == std::string::npos))
56 std::string host_minus_tld(host, 0, host.length() - tld_length - 1);
  /external/chromium_org/net/cert/
cert_verify_proc.cc 484 const size_t tld_length = strlen(tlds[j]); local
486 if (i->size() <= (1 /* period before TLD */ + tld_length))
489 const char* suffix = &dns_name[i->size() - tld_length - 1];
492 if (memcmp(&suffix[1], tlds[j], tld_length) != 0)
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.cc 296 const size_t tld_length = local
301 if (tld_length != std::string::npos) {

Completed in 259 milliseconds