Searched refs:plus_exp (Results 1 – 10 of 10) sorted by relevance
/third_party/boost/libs/metaparse/example/calculator_with_parens/ |
D | main.cpp | 110 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/ |
D | grammar.hpp | 96 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/ |
D | main.cpp | 128 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/ |
D | fail_at_first_char_expected.qbk | 68 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>
|
D | grammar.qbk | 119 grammar<BOOST_METAPARSE_STRING("plus_exp")> 124 …::rule<BOOST_METAPARSE_STRING("plus_exp ::= int_token (plus_token int_token)*"), plus_action>::type
|
D | manual.qbk | 517 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.
|
D | getting_started.qbk | 1676 * `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/ |
D | main.cpp | 117 plus_exp; typedef 119 typedef last_of<repeated<space>, plus_exp> expression;
|
/third_party/boost/libs/metaparse/example/compile_to_native_code/ |
D | main.cpp | 203 plus_exp; typedef 205 typedef last_of<repeated<space>, plus_exp> expression;
|
/third_party/boost/libs/metaparse/example/meta_lambda/ |
D | main.cpp | 198 plus_exp; typedef 200 typedef last_of<repeated<space>, plus_exp> expression;
|