Searched defs:alternative_parser (Results 1 – 2 of 2) sorted by relevance
| /third_party/boost/libs/spirit/workbench/x3/toy/ |
| D | toy.cpp | 68 struct alternative_parser : parser<alternative_parser<Left, Right>> struct 70 alternative_parser(Left left, Right right) in alternative_parser() function 74 bool parse(Iterator& first, Iterator last, Context const& ctx) const in parse() 81 Left left; 82 Right right;
|
| /third_party/boost/libs/spirit/workbench/qi/ |
| D | keywords.cpp | 186 struct alternative_parser : qi::grammar<Iterator, parsedData2(), ascii::space_type> struct 188 alternative_parser() : alternative_parser::base_type(start) in alternative_parser() function 211 typedef parsedData2 parser_target_type; 213 qi::rule<Iterator, std::string(), ascii::space_type> quoted_string; 214 qi::rule<Iterator, void(parsedData2 & ), ascii::space_type> options; 215 qi::rule<Iterator, parsedData2(), ascii::space_type> start; 455 typedef client::alternative_parser<iterator_type> alternative_parser; typedef
|