Home
last modified time | relevance | path

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

/external/chromium/net/base/
Dregistry_controlled_domain.cc239 size_t curr_start = host_check_begin; in GetRegistryLengthImpl() local
240 size_t next_dot = host.find('.', curr_start); in GetRegistryLengthImpl()
244 const char* domain_str = host.data() + curr_start; in GetRegistryLengthImpl()
245 int domain_length = host_check_len - curr_start; in GetRegistryLengthImpl()
276 return (curr_start == host_check_begin) ? in GetRegistryLengthImpl()
277 0 : (host.length() - curr_start); in GetRegistryLengthImpl()
283 prev_start = curr_start; in GetRegistryLengthImpl()
284 curr_start = next_dot + 1; in GetRegistryLengthImpl()
285 next_dot = host.find('.', curr_start); in GetRegistryLengthImpl()
291 return allow_unknown_registries ? (host.length() - curr_start) : 0; in GetRegistryLengthImpl()