Searched refs:curr_start (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/net/base/registry_controlled_domains/
H A Dregistry_controlled_domain.cc227 size_t curr_start = host_check_begin; local
228 size_t next_dot = host.find('.', curr_start);
232 const char* domain_str = host.data() + curr_start;
233 size_t domain_length = host_check_len - curr_start;
263 // If curr_start == host_check_begin, then the host is the registry
265 return (curr_start == host_check_begin) ? 0
266 : (host.length() - curr_start);
272 prev_start = curr_start;
273 curr_start = next_dot + 1;
274 next_dot = host.find('.', curr_start);
[all...]
/external/chromium_org/ppapi/shared_impl/private/
H A Dnet_address_private_impl.cc249 int curr_start = 0; local
256 curr_start = i;
259 longest_start = curr_start;

Completed in 212 milliseconds