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

  /external/chromium/net/base/
registry_controlled_domain.cc 221 const size_t host_check_begin = host.find_first_not_of('.'); local
222 if (host_check_begin == std::string::npos)
239 size_t curr_start = host_check_begin;
256 // If prev_start == host_check_begin, then the host is the registry
258 return (prev_start == host_check_begin) ?
274 // If curr_start == host_check_begin, then the host is the registry
276 return (curr_start == host_check_begin) ?
  /external/chromium_org/net/base/registry_controlled_domains/
registry_controlled_domain.cc 84 const size_t host_check_begin = host.find_first_not_of('.'); local
85 if (host_check_begin == std::string::npos)
102 size_t curr_start = host_check_begin;
125 // If prev_start == host_check_begin, then the host is the registry
127 return (prev_start == host_check_begin) ?
143 // If curr_start == host_check_begin, then the host is the registry
145 return (curr_start == host_check_begin) ?

Completed in 154 milliseconds