/third_party/boost/libs/spirit/repository/test/karma/ |
D | test.hpp | 71 std::back_insert_iterator<string_type> outit(generated); in test() local 72 bool result = karma::generate(outit, g); in test() 89 std::back_insert_iterator<string_type> outit(generated); in test() local 90 bool result = karma::generate(outit, g); in test() 109 std::back_insert_iterator<string_type> outit(generated); in test() local 110 bool result = karma::generate(outit, g, attr); in test() 128 std::back_insert_iterator<string_type> outit(generated); in test() local 129 bool result = karma::generate(outit, g, attr); in test() 148 std::back_insert_iterator<string_type> outit(generated); in test_delimited() local 149 bool result = karma::generate_delimited(outit, g, d); in test_delimited() [all …]
|
/third_party/boost/libs/spirit/test/karma/ |
D | test.hpp | 97 std::back_insert_iterator<string_type> outit(generated); in test() local 98 bool result = karma::generate(outit, g); in test() 115 std::back_insert_iterator<string_type> outit(generated); in test() local 116 bool result = karma::generate(outit, g); in test() 135 std::back_insert_iterator<string_type> outit(generated); in test() local 136 bool result = karma::generate(outit, g, attrib); in test() 154 std::back_insert_iterator<string_type> outit(generated); in test() local 155 bool result = karma::generate(outit, g, attrib); in test() 174 std::back_insert_iterator<string_type> outit(generated); in test_delimited() local 175 bool result = karma::generate_delimited(outit, g, d); in test_delimited() [all …]
|
D | test_attr.hpp | 80 std::back_insert_iterator<string_type> outit(generated); in test() local 81 bool result = karma::generate(outit, g, BOOST_PP_ENUM_PARAMS(N, attr)); in test() 101 std::back_insert_iterator<string_type> outit(generated); in test_delimited() local 102 bool result = karma::generate_delimited(outit, g, d in test_delimited() 125 std::back_insert_iterator<string_type> outit(generated); in test_predelimited() local 126 bool result = karma::generate_delimited(outit, g, d in test_predelimited()
|
D | rule_fail.cpp | 31 std::back_insert_iterator<std::string> outit(generated); in main() local 32 generate_delimited(outit, def, char_('%') << '\n'); in main()
|
D | grammar_fail.cpp | 40 std::back_insert_iterator<std::string> outit(generated); in main() local 42 generate_delimited(outit, def, char_('%') << '\n'); in main()
|
D | eps.cpp | 53 std::back_insert_iterator<std::string> outit(generated); in main() local 54 BOOST_TEST(!karma::generate_delimited(outit, eps(false), space)); in main()
|
D | alternative1.cpp | 115 std::back_insert_iterator<std::basic_string<wchar_t> > outit(generated); in main() local 117 bool result = karma::generate_delimited(outit in main()
|
/third_party/boost/libs/spirit/example/karma/ |
D | calc2_ast_rpn.cpp | 142 output_iterator_type outit(generated); in main() local 143 r = karma::generate_delimited(outit, ast_grammar, space, ast); in main()
|
D | calc2_ast_dump.cpp | 140 output_iterator_type outit(generated); in main() local 141 r = karma::generate_delimited(outit, ast_grammar, space, ast); in main()
|
D | mini_xml_karma.cpp | 200 outiter_type outit(generated); in main() local 201 bool r = karma::generate(outit, xmlout, ast); in main()
|
/third_party/boost/libs/spirit/repository/example/karma/ |
D | calc2_ast_dump_sr.cpp | 151 output_iterator_type outit(generated); in main() local 152 r = karma::generate_delimited(outit, ast_grammar, space, ast); in main()
|
D | mini_xml_karma_sr.cpp | 213 outiter_type outit(generated); in main() local 214 bool r = karma::generate(outit, xmlout, ast); in main()
|