Searched refs:ast_parse (Results 1 – 12 of 12) sorted by relevance
/third_party/boost/libs/spirit/classic/test/ |
D | post_skips.cpp | 57 info = ast_parse(test1, str_p("12345")); in ast_parse_tests() 61 info = ast_parse(test1, str_p("12345"), blank_p); in ast_parse_tests() 66 info = ast_parse(test1, str_p("12345") >> end_p, blank_p); in ast_parse_tests() 68 info = ast_parse(test2, str_p("12345") >> end_p, blank_p); in ast_parse_tests() 72 info = ast_parse(test1, str_p("12345") >> !end_p, blank_p); in ast_parse_tests() 74 info = ast_parse(test2, str_p("12345") >> !end_p, blank_p); in ast_parse_tests()
|
D | if_p_int_as_condition_test.cpp | 66 result = ast_parse("1.50", gram, space_p); in main() 73 result = ast_parse("1.50", gram, space_p); in main() 80 result = ast_parse("1.50", gram, space_p); in main()
|
D | bug_fixes.cpp | 43 ast_parse(text, text+3, access_node_d[chlit<>('1')][my_action()]); in bug_001() 44 ast_parse(text, text+3, access_match_d[chlit<>('1')][my_action()]); in bug_001() 210 BOOST_TEST(ast_parse("test ", str_p("test") >> end_p, space_p).full); in bug_007()
|
D | repeat_ast_tests.cpp | 78 tree_parse_info<> info1 = ast_parse(test.c_str(), g_fail, space_p); in main() 86 tree_parse_info<> info2 = ast_parse(test.c_str(), g_success, space_p); in main()
|
D | tree_to_xml.cpp | 126 ast_parse(iterator_t(input.begin()), iterator_t(input.end()), in test() 145 ast_parse(iterator_t(input.begin()), iterator_t(input.end()), in test()
|
D | group_match_bug.cpp | 46 ast_parse("abcd", test_grammar()); in main()
|
D | ast_calc_tests.cpp | 219 tree_parse_info<> info = ast_parse(str, calc, space_p); in parse() 231 tree_parse_info<> info = ast_parse(str, calc, space_p); in parse_dyn()
|
D | mix_and_match_trees.cpp | 81 ast_parse(begin, end, my_grammar()); in main()
|
D | tree_tests.cpp | 336 ast_parse(text_begin, text_end, gram); in operator ()()
|
/third_party/boost/boost/spirit/home/classic/tree/ |
D | ast.hpp | 297 ast_parse( in ast_parse() function 323 ast_parse( in ast_parse() function 330 return ast_parse(first_, last_, parser, skip_, default_factory_t()); in ast_parse() 336 ast_parse( in ast_parse() function 355 ast_parse( in ast_parse() function 363 return ast_parse(str, last, parser, skip); in ast_parse() 369 ast_parse( in ast_parse() function 378 return ast_parse(str, last, parser); in ast_parse()
|
/third_party/boost/libs/spirit/classic/example/fundamental/ |
D | ast_calc.cpp | 131 tree_parse_info<> info = ast_parse(str.c_str(), calc); in main()
|
/third_party/boost/libs/wave/samples/hannibal/ |
D | hannibal.cpp | 252 result_type pi = boost::spirit::classic::ast_parse(first, last, g, s); in main()
|