Home | History | Annotate | Download | only in url_matcher

Lines Matching defs:conditions

31 // reduction of URL matching conditions to StringPatterns conducted by
131 // conditions and don't register them to a URLMatcher, they will continue to
304 // This class represents a set of conditions that all need to match on a
310 typedef std::set<URLMatcherCondition> Conditions;
314 // Matches if all conditions in |conditions| are fulfilled.
315 URLMatcherConditionSet(ID id, const Conditions& conditions);
317 // Matches if all conditions in |conditions|, |scheme_filter| and
320 URLMatcherConditionSet(ID id, const Conditions& conditions,
324 // Matches if all conditions in |conditions|, |query_conditions|,
329 const Conditions& conditions,
335 const Conditions& conditions() const { return conditions_; }
349 Conditions conditions_;