Home
last modified time | relevance | path

Searched defs:matches_directive (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/spirit/home/x3/directive/
Dmatches.hpp18 struct matches_directive : unary_parser<Subject, matches_directive<Subject>> struct
20 using base_type = unary_parser<Subject, matches_directive<Subject>>;
21 static bool const has_attribute = true;
22 using attribute_type = bool;
24 constexpr matches_directive(Subject const& subject) : base_type(subject) {} in matches_directive() function
28 bool parse(Iterator& first, Iterator const& last in parse()
/third_party/boost/boost/spirit/home/qi/directive/
Dmatches.hpp44 struct matches_directive : unary_parser<matches_directive<Subject> > struct
46 typedef Subject subject_type;
47 matches_directive(Subject const& subject_) in matches_directive() argument
51 struct attribute
58 bool parse(Iterator& first, Iterator const& last in parse()
67 info what(Context& context) const in what()
72 Subject subject;