HomeSort by relevance Sort by last modified time
    Searched refs:curr_start (Results 1 - 3 of 3) 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...]
  /external/chromium_org/net/base/registry_controlled_domains/
registry_controlled_domain.cc 102 size_t curr_start = host_check_begin; local
103 size_t next_dot = host.find('.', curr_start);
107 const char* domain_str = host.data() + curr_start;
108 int domain_length = host_check_len - curr_start;
143 // If curr_start == host_check_begin, then the host is the registry
145 return (curr_start == host_check_begin) ?
146 0 : (host.length() - curr_start);
153 prev_start = curr_start;
154 curr_start = next_dot + 1;
155 next_dot = host.find('.', curr_start);
    [all...]
  /external/chromium_org/ppapi/shared_impl/private/
net_address_private_impl.cc 249 int curr_start = 0; local
256 curr_start = i;
259 longest_start = curr_start;

Completed in 81 milliseconds