/third_party/boost/libs/metaparse/test/ |
D | last_of.cpp | 19 BOOST_METAPARSE_TEST_CASE(last_of) in BOOST_METAPARSE_TEST_CASE() argument 22 using boost::metaparse::last_of; in BOOST_METAPARSE_TEST_CASE() 32 get_result<apply_wrap2<last_of<lit_h>, str_hello, start> >::type, in BOOST_METAPARSE_TEST_CASE() 40 get_result<apply_wrap2<last_of<lit_h, lit_e>, str_hello, start> >::type, in BOOST_METAPARSE_TEST_CASE() 47 is_error<apply_wrap2<last_of<lit_x, lit_e>, str_hello, start> > in BOOST_METAPARSE_TEST_CASE() 52 is_error<apply_wrap2<last_of<lit_h, lit_x>, str_hello, start> > in BOOST_METAPARSE_TEST_CASE() 57 is_error<apply_wrap2<last_of<lit_h, lit_e>, str_, start> > in BOOST_METAPARSE_TEST_CASE() 64 apply_wrap2<last_of<lit_h, lit_e, lit_l>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
|
/third_party/boost/libs/metaparse/doc/ |
D | last_of.qbk | 1 [#last_of] 2 [section last_of] 7 struct last_of; 18 `last_of` applies the `Ps...` parsers in sequence. It accepts an input when all 22 `last_of` accepts can be specified with the 27 #include <boost/metaparse/last_of.hpp> 41 #include <boost/metaparse/last_of.hpp> 53 using comma_int = last_of<lit_c<','>, int_>;
|
D | repeated_reject_incomplete.qbk | 29 using plus_int = last_of<plus_token, int_token>; 52 #include <boost/metaparse/last_of.hpp> 67 using plus_int = last_of<plus_token, int_token>;
|
D | foldl_reject_incomplete.qbk | 31 using plus_int = last_of<plus_token, int_token>; 55 #include <boost/metaparse/last_of.hpp> 71 using plus_int = last_of<plus_token, int_token>;
|
D | foldl_reject_incomplete_start_with_parser.qbk | 33 using plus_int = last_of<plus_token, int_token>; 64 #include <boost/metaparse/last_of.hpp> 79 using plus_int = last_of<plus_token, int_token>;
|
D | foldr_reject_incomplete.qbk | 31 using plus_int = last_of<plus_token, int_token>; 59 #include <boost/metaparse/last_of.hpp> 75 using plus_int = last_of<plus_token, int_token>;
|
D | foldl_start_with_parser.qbk | 29 using plus_int = last_of<plus_token, int_token>; 66 #include <boost/metaparse/last_of.hpp> 81 using plus_int = last_of<plus_token, int_token>;
|
D | repeated_reject_incomplete1.qbk | 43 #include <boost/metaparse/last_of.hpp> 58 using plus_int = last_of<plus_token, int_token>;
|
D | change_error_message.qbk | 43 #include <boost/metaparse/last_of.hpp> 61 last_of<keyword_name, change_error_message<name_token, name_expected>>;
|
D | transform_error_message.qbk | 45 #include <boost/metaparse/last_of.hpp> 72 last_of<
|
D | foldl_reject_incomplete1.qbk | 46 #include <boost/metaparse/last_of.hpp> 62 using plus_int = last_of<plus_token, int_token>;
|
D | fail_at_first_char_expected.qbk | 55 #include <boost/metaparse/last_of.hpp> 66 using plus_int = last_of<lit_c<'+'>, int_>;
|
D | foldr_reject_incomplete1.qbk | 46 #include <boost/metaparse/last_of.hpp> 62 using plus_int = last_of<plus_token, int_token>;
|
D | transform_error.qbk | 44 #include <boost/metaparse/last_of.hpp> 66 last_of<
|
/third_party/boost/boost/metaparse/v1/cpp11/ |
D | last_of.hpp | 21 struct last_of struct 23 typedef last_of type; argument 30 struct last_of<> : fail<error::index_out_of_range<0, -1, 0>> {}; struct
|
/third_party/boost/libs/metaparse/example/meta_hs/ |
D | grammar.hpp | 51 boost::metaparse::last_of<token::if_, expression>, 52 boost::metaparse::last_of<token::then, expression>, 53 boost::metaparse::last_of<token::else_, expression> 114 boost::metaparse::last_of<token::define, expression>,
|
D | token.hpp | 60 boost::metaparse::last_of< 67 boost::metaparse::last_of< 74 boost::metaparse::last_of< 86 boost::metaparse::last_of<
|
/third_party/boost/boost/metaparse/v1/cpp98/ |
D | last_of.hpp | 33 struct last_of; 40 struct last_of< \
|
/third_party/boost/libs/metaparse/example/minimal_rational/ |
D | main.cpp | 22 using boost::metaparse::last_of; 45 last_of<lit_c<'/'>, token<int_> >
|
/third_party/boost/libs/metaparse/example/rational/ |
D | main.cpp | 26 using boost::metaparse::last_of; 52 last_of<lit_c<'/'>, token<int_> >,
|
/third_party/boost/libs/metaparse/example/calculator/ |
D | main.cpp | 36 using boost::metaparse::last_of; 119 typedef last_of<repeated<space>, plus_exp> expression;
|
/third_party/boost/libs/metaparse/example/calculator_with_parens/ |
D | main.cpp | 37 using boost::metaparse::last_of; 132 typedef last_of<repeated<space>, plus_exp> expression;
|
/third_party/boost/boost/metaparse/ |
D | last_of.hpp | 15 using v1::last_of;
|
/third_party/boost/libs/metaparse/example/calculator_with_parens_and_unary_ops/ |
D | main.cpp | 40 using boost::metaparse::last_of; 156 typedef last_of<repeated<space>, plus_exp> expression;
|
/third_party/boost/libs/metaparse/example/compile_to_native_code/ |
D | main.cpp | 30 using boost::metaparse::last_of; 205 typedef last_of<repeated<space>, plus_exp> expression;
|