OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CountInString
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/cookies/
cookie_monster_perftest.cc
27
int
CountInString
(const std::string& str, char c) {
230
EXPECT_EQ(5,
CountInString
(cookie_line, '='))
271
EXPECT_EQ(32,
CountInString
(cookie_line, '='));
cookie_monster_unittest.cc
419
int
CountInString
(const std::string& str, char c) {
438
EXPECT_LE(
CountInString
(cookies, '='), domain_max_cookies);
458
EXPECT_LE((
CountInString
(cookies_general, '=') +
459
CountInString
(cookies_specific, '=')),
467
int total_cookies = (
CountInString
(cookies_general, '=') +
468
CountInString
(cookies_specific, '='));
[
all
...]
Completed in 620 milliseconds