OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatchLongest
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/content/browser/service_worker/
service_worker_utils_unittest.cc
76
ASSERT_TRUE(matcher.
MatchLongest
(GURL("http://www.example.com/x*")));
77
ASSERT_FALSE(matcher.
MatchLongest
(GURL("http://www.example.com/*")));
78
ASSERT_TRUE(matcher.
MatchLongest
(GURL("http://www.example.com/xx*")));
81
ASSERT_TRUE(matcher.
MatchLongest
(GURL("http://www.example.com/xxx*")));
83
ASSERT_FALSE(matcher.
MatchLongest
(GURL("http://www.example.com/xxxx*")));
92
ASSERT_TRUE(matcher1.
MatchLongest
(GURL("http://www.example.com/xxx")));
93
ASSERT_FALSE(matcher1.
MatchLongest
(GURL("http://www.example.com/xx*")));
99
ASSERT_TRUE(matcher2.
MatchLongest
(GURL("http://www.example.com/x(1)")));
100
ASSERT_TRUE(matcher2.
MatchLongest
(GURL("http://www.example.com/x(1*")));
service_worker_utils.h
44
bool
MatchLongest
(const GURL& scope);
service_worker_utils.cc
36
bool LongestScopeMatcher::
MatchLongest
(const GURL& scope) {
service_worker_storage.cc
706
if (matcher.
MatchLongest
(it->second->pattern()))
922
if (matcher.
MatchLongest
(registrations[i].scope))
[
all
...]
Completed in 40 milliseconds