Home
last modified time | relevance | path

Searched refs:ast_parse (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/libs/spirit/classic/test/
Dpost_skips.cpp57 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()
Dif_p_int_as_condition_test.cpp66 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()
Dbug_fixes.cpp43 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()
Drepeat_ast_tests.cpp78 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()
Dtree_to_xml.cpp126 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()
Dgroup_match_bug.cpp46 ast_parse("abcd", test_grammar()); in main()
Dast_calc_tests.cpp219 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()
Dmix_and_match_trees.cpp81 ast_parse(begin, end, my_grammar()); in main()
Dtree_tests.cpp336 ast_parse(text_begin, text_end, gram); in operator ()()
/third_party/boost/boost/spirit/home/classic/tree/
Dast.hpp297 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/
Dast_calc.cpp131 tree_parse_info<> info = ast_parse(str.c_str(), calc); in main()
/third_party/boost/libs/wave/samples/hannibal/
Dhannibal.cpp252 result_type pi = boost::spirit::classic::ast_parse(first, last, g, s); in main()