URLMatcherPortFilter   27 components/policy/core/browser/url_blacklist_manager.cc using url_matcher::URLMatcherPortFilter;
URLMatcherPortFilter  232 components/policy/core/browser/url_blacklist_manager.cc   scoped_ptr<URLMatcherPortFilter> port_filter;
URLMatcherPortFilter  234 components/policy/core/browser/url_blacklist_manager.cc     std::vector<URLMatcherPortFilter::Range> ranges;
URLMatcherPortFilter  235 components/policy/core/browser/url_blacklist_manager.cc     ranges.push_back(URLMatcherPortFilter::CreateRange(port));
URLMatcherPortFilter  236 components/policy/core/browser/url_blacklist_manager.cc     port_filter.reset(new URLMatcherPortFilter(ranges));
URLMatcherPortFilter  559 components/url_matcher/url_matcher.cc URLMatcherPortFilter::URLMatcherPortFilter(
URLMatcherPortFilter  560 components/url_matcher/url_matcher.cc     const std::vector<URLMatcherPortFilter::Range>& ranges)
URLMatcherPortFilter  563 components/url_matcher/url_matcher.cc URLMatcherPortFilter::~URLMatcherPortFilter() {}
URLMatcherPortFilter  565 components/url_matcher/url_matcher.cc bool URLMatcherPortFilter::IsMatch(const GURL& url) const {
URLMatcherPortFilter  576 components/url_matcher/url_matcher.cc URLMatcherPortFilter::Range URLMatcherPortFilter::CreateRange(int from,
URLMatcherPortFilter  582 components/url_matcher/url_matcher.cc URLMatcherPortFilter::Range URLMatcherPortFilter::CreateRange(int port) {
URLMatcherPortFilter  602 components/url_matcher/url_matcher.cc     scoped_ptr<URLMatcherPortFilter> port_filter)
URLMatcherPortFilter  233 components/url_matcher/url_matcher.h class URL_MATCHER_EXPORT URLMatcherPortFilter {
URLMatcherPortFilter  237 components/url_matcher/url_matcher.h   explicit URLMatcherPortFilter(const std::vector<Range>& ranges);
URLMatcherPortFilter  238 components/url_matcher/url_matcher.h   ~URLMatcherPortFilter();
URLMatcherPortFilter  249 components/url_matcher/url_matcher.h   DISALLOW_COPY_AND_ASSIGN(URLMatcherPortFilter);
URLMatcherPortFilter  269 components/url_matcher/url_matcher.h                          scoped_ptr<URLMatcherPortFilter> port_filter);
URLMatcherPortFilter  283 components/url_matcher/url_matcher.h   scoped_ptr<URLMatcherPortFilter> port_filter_;
URLMatcherPortFilter  111 components/url_matcher/url_matcher_factory.cc   scoped_ptr<URLMatcherPortFilter> url_matcher_port_filter;
URLMatcherPortFilter  238 components/url_matcher/url_matcher_factory.cc scoped_ptr<URLMatcherPortFilter> URLMatcherFactory::CreateURLMatcherPorts(
URLMatcherPortFilter  241 components/url_matcher/url_matcher_factory.cc   std::vector<URLMatcherPortFilter::Range> ranges;
URLMatcherPortFilter  245 components/url_matcher/url_matcher_factory.cc     return scoped_ptr<URLMatcherPortFilter>();
URLMatcherPortFilter  254 components/url_matcher/url_matcher_factory.cc       ranges.push_back(URLMatcherPortFilter::CreateRange(port));
URLMatcherPortFilter  261 components/url_matcher/url_matcher_factory.cc         return scoped_ptr<URLMatcherPortFilter>();
URLMatcherPortFilter  263 components/url_matcher/url_matcher_factory.cc       ranges.push_back(URLMatcherPortFilter::CreateRange(from, to));
URLMatcherPortFilter  266 components/url_matcher/url_matcher_factory.cc       return scoped_ptr<URLMatcherPortFilter>();
URLMatcherPortFilter  270 components/url_matcher/url_matcher_factory.cc   return scoped_ptr<URLMatcherPortFilter>(new URLMatcherPortFilter(ranges));
URLMatcherPortFilter   55 components/url_matcher/url_matcher_factory.h   static scoped_ptr<URLMatcherPortFilter> CreateURLMatcherPorts(
URLMatcherPortFilter   48 components/url_matcher/url_matcher_unittest.cc TEST(URLMatcherPortFilter, TestMatching) {
URLMatcherPortFilter   49 components/url_matcher/url_matcher_unittest.cc   std::vector<URLMatcherPortFilter::Range> ranges;
URLMatcherPortFilter   50 components/url_matcher/url_matcher_unittest.cc   ranges.push_back(URLMatcherPortFilter::CreateRange(80, 90));
URLMatcherPortFilter   51 components/url_matcher/url_matcher_unittest.cc   ranges.push_back(URLMatcherPortFilter::CreateRange(8080));
URLMatcherPortFilter   52 components/url_matcher/url_matcher_unittest.cc   URLMatcherPortFilter filter(ranges);
URLMatcherPortFilter  456 components/url_matcher/url_matcher_unittest.cc                                  scoped_ptr<URLMatcherPortFilter>()));
URLMatcherPortFilter  463 components/url_matcher/url_matcher_unittest.cc                                  scoped_ptr<URLMatcherPortFilter>()));
URLMatcherPortFilter  467 components/url_matcher/url_matcher_unittest.cc   std::vector<URLMatcherPortFilter::Range> ranges;
URLMatcherPortFilter  468 components/url_matcher/url_matcher_unittest.cc   ranges.push_back(URLMatcherPortFilter::CreateRange(80));
URLMatcherPortFilter  469 components/url_matcher/url_matcher_unittest.cc   scoped_ptr<URLMatcherPortFilter> filter(new URLMatcherPortFilter(ranges));