OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CreatePathPrefixCondition
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/components/url_matcher/
url_matcher_unittest.cc
179
factory.
CreatePathPrefixCondition
("foo").criterion());
282
EXPECT_TRUE(Matches(factory.
CreatePathPrefixCondition
(std::string()), url));
283
EXPECT_TRUE(Matches(factory.
CreatePathPrefixCondition
("/web"), url));
284
EXPECT_TRUE(Matches(factory.
CreatePathPrefixCondition
("/webhp"), url));
285
EXPECT_FALSE(Matches(factory.
CreatePathPrefixCondition
("webhp"), url));
286
EXPECT_FALSE(Matches(factory.
CreatePathPrefixCondition
("/webhp?"), url));
287
EXPECT_FALSE(Matches(factory.
CreatePathPrefixCondition
("?sourceid"), url));
618
conditions.insert(factory->
CreatePathPrefixCondition
("/we"));
url_matcher.h
139
URLMatcherCondition
CreatePathPrefixCondition
(const std::string& prefix);
url_matcher_factory.cc
52
factory_methods_[keys::kPathPrefixKey] = &F::
CreatePathPrefixCondition
;
url_matcher.cc
294
URLMatcherCondition URLMatcherConditionFactory::
CreatePathPrefixCondition
(
Completed in 41 milliseconds