Home | History | Annotate | Download | only in matcher

Lines Matching refs:URLMatcherCondition

34 class URLMatcherCondition {
59 URLMatcherCondition();
60 ~URLMatcherCondition();
61 URLMatcherCondition(Criterion criterion,
63 URLMatcherCondition(const URLMatcherCondition& rhs);
64 URLMatcherCondition& operator=(const URLMatcherCondition& rhs);
65 bool operator<(const URLMatcherCondition& rhs) const;
72 // Returns whether this URLMatcherCondition needs to be executed on a
77 // Returns whether this URLMatcherCondition is a regular expression to be
81 // Returns whether this URLMatcherCondition is a regular expression that shall
118 // all created URLMatcherCondition and the SubstringSetMatcher.
133 URLMatcherCondition CreateHostPrefixCondition(const std::string& prefix);
134 URLMatcherCondition CreateHostSuffixCondition(const std::string& suffix);
135 URLMatcherCondition CreateHostContainsCondition(const std::string& str);
136 URLMatcherCondition CreateHostEqualsCondition(const std::string& str);
138 URLMatcherCondition CreatePathPrefixCondition(const std::string& prefix);
139 URLMatcherCondition CreatePathSuffixCondition(const std::string& suffix);
140 URLMatcherCondition CreatePathContainsCondition(const std::string& str);
141 URLMatcherCondition CreatePathEqualsCondition(const std::string& str);
143 URLMatcherCondition CreateQueryPrefixCondition(const std::string& prefix);
144 URLMatcherCondition CreateQuerySuffixCondition(const std::string& suffix);
145 URLMatcherCondition CreateQueryContainsCondition(const std::string& str);
146 URLMatcherCondition CreateQueryEqualsCondition(const std::string& str);
151 URLMatcherCondition CreateHostSuffixPathPrefixCondition(
154 URLMatcherCondition CreateHostEqualsPathPrefixCondition(
167 URLMatcherCondition CreateURLPrefixCondition(const std::string& prefix);
168 URLMatcherCondition CreateURLSuffixCondition(const std::string& suffix);
169 URLMatcherCondition CreateURLContainsCondition(const std::string& str);
170 URLMatcherCondition CreateURLEqualsCondition(const std::string& str);
172 URLMatcherCondition CreateURLMatchesCondition(const std::string& regex);
173 URLMatcherCondition CreateOriginAndPathMatchesCondition(
186 // Creates a URLMatcherCondition according to the parameters passed.
187 // The URLMatcherCondition will refer to a StringPattern that is
189 URLMatcherCondition CreateCondition(URLMatcherCondition::Criterion criterion,
256 typedef std::set<URLMatcherCondition> Conditions;