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

  /external/chromium/net/base/
registry_controlled_domain.cc 239 size_t curr_start = host_check_begin; local
240 size_t next_dot = host.find('.', curr_start);
244 const char* domain_str = host.data() + curr_start;
245 int domain_length = host_check_len - curr_start;
274 // If curr_start == host_check_begin, then the host is the registry
276 return (curr_start == host_check_begin) ?
277 0 : (host.length() - curr_start);
283 prev_start = curr_start;
284 curr_start = next_dot + 1;
285 next_dot = host.find('.', curr_start);
    [all...]

Completed in 31 milliseconds