Home
last modified time | relevance | path

Searched refs:plus_exp (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/metaparse/example/calculator_with_parens/
Dmain.cpp110 struct plus_exp;
112 typedef middle_of<open_paren_token, plus_exp, close_paren_token> paren_exp;
124 struct plus_exp : struct
132 typedef last_of<repeated<space>, plus_exp> expression;
/third_party/boost/libs/metaparse/example/meta_hs/
Dgrammar.hpp96 plus_exp; typedef
100 boost::metaparse::sequence<token::cmp, plus_exp>,
101 plus_exp,
/third_party/boost/libs/metaparse/example/calculator_with_parens_and_unary_ops/
Dmain.cpp128 struct plus_exp;
130 typedef middle_of<open_paren_token, plus_exp, close_paren_token> paren_exp;
148 struct plus_exp : struct
156 typedef last_of<repeated<space>, plus_exp> expression;
/third_party/boost/libs/metaparse/doc/
Dfail_at_first_char_expected.qbk68 using plus_exp =
80 plus_exp::apply<BOOST_METAPARSE_STRING("1+2+3"), start>
87 plus_exp::apply<BOOST_METAPARSE_STRING("1+2+3+"), start>
Dgrammar.qbk119 grammar<BOOST_METAPARSE_STRING("plus_exp")>
124 …::rule<BOOST_METAPARSE_STRING("plus_exp ::= int_token (plus_token int_token)*"), plus_action>::type
Dmanual.qbk517 grammar<BOOST_METAPARSE_STRING("plus_exp")>
522 …::rule<BOOST_METAPARSE_STRING("plus_exp ::= int_token (plus_token int_token)*"), plus_action>::type
525 the grammar is `plus_exp`. The lines beginning with `::rule` define rules.
Dgetting_started.qbk1676 * `plus_exp` uses `mult_exp`
1680 * `paren_exp` uses `plus_exp`
1702 Let's make `plus_exp` a class. So as a first step, let's forward declare it:
1854 Let's define `plus_exp` and `paren_exp` first. Their definition does not change:
/third_party/boost/libs/metaparse/example/calculator/
Dmain.cpp117 plus_exp; typedef
119 typedef last_of<repeated<space>, plus_exp> expression;
/third_party/boost/libs/metaparse/example/compile_to_native_code/
Dmain.cpp203 plus_exp; typedef
205 typedef last_of<repeated<space>, plus_exp> expression;
/third_party/boost/libs/metaparse/example/meta_lambda/
Dmain.cpp198 plus_exp; typedef
200 typedef last_of<repeated<space>, plus_exp> expression;