CreatePathPrefixCondition  139 components/url_matcher/url_matcher.h   URLMatcherCondition CreatePathPrefixCondition(const std::string& prefix);
CreatePathPrefixCondition   52 components/url_matcher/url_matcher_factory.cc     factory_methods_[keys::kPathPrefixKey] = &F::CreatePathPrefixCondition;
CreatePathPrefixCondition  179 components/url_matcher/url_matcher_unittest.cc             factory.CreatePathPrefixCondition("foo").criterion());
CreatePathPrefixCondition  282 components/url_matcher/url_matcher_unittest.cc   EXPECT_TRUE(Matches(factory.CreatePathPrefixCondition(std::string()), url));
CreatePathPrefixCondition  283 components/url_matcher/url_matcher_unittest.cc   EXPECT_TRUE(Matches(factory.CreatePathPrefixCondition("/web"), url));
CreatePathPrefixCondition  284 components/url_matcher/url_matcher_unittest.cc   EXPECT_TRUE(Matches(factory.CreatePathPrefixCondition("/webhp"), url));
CreatePathPrefixCondition  285 components/url_matcher/url_matcher_unittest.cc   EXPECT_FALSE(Matches(factory.CreatePathPrefixCondition("webhp"), url));
CreatePathPrefixCondition  286 components/url_matcher/url_matcher_unittest.cc   EXPECT_FALSE(Matches(factory.CreatePathPrefixCondition("/webhp?"), url));
CreatePathPrefixCondition  287 components/url_matcher/url_matcher_unittest.cc   EXPECT_FALSE(Matches(factory.CreatePathPrefixCondition("?sourceid"), url));
CreatePathPrefixCondition  618 components/url_matcher/url_matcher_unittest.cc   conditions.insert(factory->CreatePathPrefixCondition("/we"));