Home
last modified time | relevance | path

Searched refs:grammar_type (Results 1 – 25 of 37) sorted by relevance

12

/dports/devel/boost-docs/boost_1_72_0/libs/spirit/test/x3/
H A Drule_separate_tu_grammar.hpp29 using grammar_type = x3::rule<class grammar_r>; typedef
30 const grammar_type grammar;
31 BOOST_SPIRIT_DECLARE(grammar_type)
45 using grammar_type = x3::rule<class grammar_r, int>; typedef
46 const grammar_type grammar;
47 BOOST_SPIRIT_DECLARE(grammar_type)
H A Drule_separate_tu_grammar.cpp25 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
26 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
27 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper2_type>::type)
39 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
40 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
H A Dgrammar.hpp6 using grammar_type = decltype(grammar); typedef
7 BOOST_SPIRIT_DECLARE(grammar_type)
H A Dgrammar.cpp6 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
H A Drule_separate_tu.cpp54 static_assert(!std::is_same<decltype(i), used_attr::grammar_type::attribute_type>::value, in main()
/dports/devel/boost-libs/boost_1_72_0/libs/spirit/test/x3/
H A Drule_separate_tu_grammar.hpp29 using grammar_type = x3::rule<class grammar_r>; typedef
30 const grammar_type grammar;
31 BOOST_SPIRIT_DECLARE(grammar_type)
45 using grammar_type = x3::rule<class grammar_r, int>; typedef
46 const grammar_type grammar;
47 BOOST_SPIRIT_DECLARE(grammar_type)
H A Drule_separate_tu_grammar.cpp25 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
26 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
27 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper2_type>::type)
39 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
40 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
H A Dgrammar.hpp6 using grammar_type = decltype(grammar); typedef
7 BOOST_SPIRIT_DECLARE(grammar_type)
H A Dgrammar.cpp6 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
H A Drule_separate_tu.cpp54 static_assert(!std::is_same<decltype(i), used_attr::grammar_type::attribute_type>::value, in main()
/dports/devel/boost-python-libs/boost_1_72_0/libs/spirit/test/x3/
H A Drule_separate_tu_grammar.hpp29 using grammar_type = x3::rule<class grammar_r>; typedef
30 const grammar_type grammar;
31 BOOST_SPIRIT_DECLARE(grammar_type)
45 using grammar_type = x3::rule<class grammar_r, int>; typedef
46 const grammar_type grammar;
47 BOOST_SPIRIT_DECLARE(grammar_type)
H A Drule_separate_tu_grammar.cpp25 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
26 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
27 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper2_type>::type)
39 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
40 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
H A Dgrammar.hpp6 using grammar_type = decltype(grammar); typedef
7 BOOST_SPIRIT_DECLARE(grammar_type)
H A Dgrammar.cpp6 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
H A Drule_separate_tu.cpp54 static_assert(!std::is_same<decltype(i), used_attr::grammar_type::attribute_type>::value, in main()
/dports/devel/hyperscan/boost_1_75_0/libs/spirit/test/x3/
H A Drule_separate_tu_grammar.hpp29 using grammar_type = x3::rule<class grammar_r>; typedef
30 const grammar_type grammar;
31 BOOST_SPIRIT_DECLARE(grammar_type)
45 using grammar_type = x3::rule<class grammar_r, int>; typedef
46 const grammar_type grammar;
47 BOOST_SPIRIT_DECLARE(grammar_type)
H A Drule_separate_tu_grammar.cpp25 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
26 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
27 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper2_type>::type)
39 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
40 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::phrase_parse_context<skipper_type>::type)
H A Dgrammar.hpp6 using grammar_type = decltype(grammar); typedef
7 BOOST_SPIRIT_DECLARE(grammar_type)
H A Dgrammar.cpp6 BOOST_SPIRIT_INSTANTIATE(grammar_type, char const*, x3::unused_type)
H A Drule_separate_tu.cpp54 static_assert(!std::is_same<decltype(i), used_attr::grammar_type::attribute_type>::value, in main()
/dports/games/freeorion/freeorion-0.4.10.2/test/parse/
H A DTestEnumParser.cpp87 #define CHECK_ENUM_AND_RESULT(string, expected, result_type, grammar_type) \ in BOOST_FIXTURE_TEST_SUITE() argument
90 auto pass = parse<result_type, grammar_type>(string, result); \ in BOOST_FIXTURE_TEST_SUITE()
95 #define CHECK_ENUM_EXPR_AND_RESULT(string, expected, result_type, grammar_type) \ argument
98 auto pass = parse_enum_expr<result_type, grammar_type>(string, result); \
103 #define CHECK_FAILED_ENUM(result_type, grammar_type) \ argument
106 auto pass = parse<result_type, grammar_type>("ThisEnumerationDoesNotExist", result); \
110 #define CHECK_FAILED_ENUM_EXPR(result_type, grammar_type) \ argument
113 … auto pass = parse_enum_expr<result_type, grammar_type>("ThisEnumerationDoesNotExist", result); \
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/wave/grammars/
H A Dcpp_grammar.hpp159 typedef cpp_grammar<TokenT, ContainerT> grammar_type; typedef
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/wave/grammars/
H A Dcpp_grammar.hpp159 typedef cpp_grammar<TokenT, ContainerT> grammar_type; typedef
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/wave/grammars/
H A Dcpp_grammar.hpp159 typedef cpp_grammar<TokenT, ContainerT> grammar_type; typedef
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/wave/grammars/
H A Dcpp_grammar.hpp159 typedef cpp_grammar<TokenT, ContainerT> grammar_type; typedef

12