OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:next_dot
(Results
1 - 5
of
5
) sorted by null
/external/chromium/chrome/browser/content_settings/
content_settings_base_provider.cc
130
const size_t
next_dot
=
local
132
if (
next_dot
== std::string::npos)
135
next_dot
- ContentSettingsPattern::kDomainWildcardLength + 1);
219
const size_t
next_dot
=
local
221
if (
next_dot
== std::string::npos)
224
next_dot
- ContentSettingsPattern::kDomainWildcardLength + 1);
/external/chromium/net/base/
registry_controlled_domain.cc
240
size_t
next_dot
= host.find('.', curr_start);
local
241
if (
next_dot
>= host_check_len) // Catches std::string::npos as well.
263
if (
next_dot
== std::string::npos) {
271
return host.length() -
next_dot
- 1;
280
if (
next_dot
>= host_check_len) // Catches std::string::npos as well.
284
curr_start =
next_dot
+ 1;
285
next_dot
= host.find('.', curr_start);
cookie_monster.cc
[
all
...]
/external/chromium/chrome/browser/extensions/
extension_cookies_helpers.cc
184
const size_t
next_dot
= sub_domain.find('.', 1); // Skip over leading dot.
local
185
sub_domain.erase(0,
next_dot
);
/external/chromium/chrome/browser/
cookies_tree_model.cc
118
std::string::size_type
next_dot
= host.rfind(".", position - 1);
local
119
if (
next_dot
== std::string::npos) {
123
retval += host.substr(
next_dot
+ 1, position - (
next_dot
+ 1));
124
position =
next_dot
;
Completed in 191 milliseconds