Home
last modified time | relevance | path

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

/external/chromium_org/net/base/registry_controlled_domains/
Dregistry_controlled_domain.cc227 size_t curr_start = host_check_begin; in GetRegistryLengthImpl() local
228 size_t next_dot = host.find('.', curr_start); in GetRegistryLengthImpl()
232 const char* domain_str = host.data() + curr_start; in GetRegistryLengthImpl()
233 size_t domain_length = host_check_len - curr_start; in GetRegistryLengthImpl()
265 return (curr_start == host_check_begin) ? 0 in GetRegistryLengthImpl()
266 : (host.length() - curr_start); in GetRegistryLengthImpl()
272 prev_start = curr_start; in GetRegistryLengthImpl()
273 curr_start = next_dot + 1; in GetRegistryLengthImpl()
274 next_dot = host.find('.', curr_start); in GetRegistryLengthImpl()
281 (host.length() - curr_start) : 0; in GetRegistryLengthImpl()
/external/chromium_org/ppapi/shared_impl/private/
Dnet_address_private_impl.cc249 int curr_start = 0; in ConvertIPv6AddressToString() local
256 curr_start = i; in ConvertIPv6AddressToString()
259 longest_start = curr_start; in ConvertIPv6AddressToString()