/third_party/boost/boost/spirit/home/qi/ |
D | parse.hpp | 106 phrase_parse( in phrase_parse() function 126 phrase_parse( in phrase_parse() function 134 return qi::phrase_parse(first, last, expr, skipper, post_skip); in phrase_parse() 140 phrase_parse( in phrase_parse() function 179 phrase_parse( in phrase_parse() function 188 return qi::phrase_parse(first, last, expr, skipper, post_skip, attr); in phrase_parse() 194 phrase_parse( in phrase_parse() function 201 return qi::phrase_parse(first, last, expr, skipper, skip_flag::postskip, attr); in phrase_parse() 206 phrase_parse( in phrase_parse() function 214 return qi::phrase_parse(first, last, expr, skipper, skip_flag::postskip, attr); in phrase_parse()
|
D | parse_attr.hpp | 86 phrase_parse( in phrase_parse() function 129 phrase_parse( in phrase_parse() function 138 return qi::phrase_parse(first, last, expr, skipper, post_skip in phrase_parse() 146 phrase_parse( in phrase_parse() function 153 return qi::phrase_parse(first, last, expr, skipper, skip_flag::postskip in phrase_parse() 160 phrase_parse( in phrase_parse() function 168 return qi::phrase_parse(first, last, expr, skipper, skip_flag::postskip in phrase_parse()
|
/third_party/boost/libs/spirit/repository/example/qi/ |
D | distinct.cpp | 30 bool r = qi::phrase_parse(first, str.end() in main() 41 bool r = qi::phrase_parse(first, str.end() in main() 52 bool r = qi::phrase_parse(first, str.end() in main()
|
D | keywords.cpp | 40 using boost::spirit::qi::phrase_parse; in test_phrase_parser() 45 if (phrase_parse(f, l, p, space) && (!full_match || (f == l))) in test_phrase_parser() 71 using boost::spirit::qi::phrase_parse; in test_phrase_parser_attr() 76 if (phrase_parse(f, l, p, space, attr) && (!full_match || (f == l))) in test_phrase_parser_attr()
|
/third_party/boost/libs/spirit/test/x3/ |
D | rule1.cpp | 27 using boost::spirit::x3::phrase_parse; in main() 109 BOOST_TEST(phrase_parse(s1, e1, start, space, skip_flag::dont_post_skip) in main() 122 BOOST_TEST(phrase_parse(s1, e1, p, space, skip_flag::post_skip) in main() 128 BOOST_TEST(phrase_parse(s1, e1, p, space, skip_flag::dont_post_skip) in main()
|
D | test.hpp | 43 return boost::spirit::x3::phrase_parse(in, last, p, s) in test() 84 return boost::spirit::x3::phrase_parse(in, last, p, s, attr) in test_attr() 102 return boost::spirit::x3::phrase_parse(in, last, p, s) in binary_test() 120 return boost::spirit::x3::phrase_parse(in, last, p, s, attr) in binary_test_attr()
|
/third_party/boost/libs/spirit/test/qi/ |
D | rule1.cpp | 137 using boost::spirit::qi::phrase_parse; in main() 142 BOOST_TEST(phrase_parse(s1, e1, start, space, skip_flag::dont_postskip) in main() 150 BOOST_TEST(phrase_parse(s1, e1, start, space, skip_flag::postskip) in main() 156 BOOST_TEST(phrase_parse(s1, e1, start, space, skip_flag::dont_postskip) in main()
|
D | test.hpp | 42 return boost::spirit::qi::phrase_parse(in, last, p, s) in test() 68 return boost::spirit::qi::phrase_parse(in, last, p, s) in binary_test() 98 return boost::spirit::qi::phrase_parse(in, last, p, s, attr) in test_attr() 124 return boost::spirit::qi::phrase_parse(in, last, p, s, attr) in binary_test_attr()
|
/third_party/boost/boost/spirit/home/x3/core/ |
D | parse.hpp | 128 phrase_parse( in phrase_parse() function 142 phrase_parse( in phrase_parse() function 157 phrase_parse( in phrase_parse() function 170 phrase_parse( in phrase_parse() function
|
/third_party/boost/libs/spirit/doc/x3/tutorial/ |
D | num_list4.qbk | 29 vector. For that to happen, we'll use a variation of the `phrase_parse` with 31 passed to `phrase_parse` 45 using x3::phrase_parse; 49 bool r = phrase_parse(first, last,
|
/third_party/boost/boost/spirit/home/qi/detail/ |
D | parse_auto.hpp | 58 return qi::phrase_parse(first, last, create_parser<Expr>() in call() 66 return qi::phrase_parse(first, last, create_parser<Expr>() in call() 94 phrase_parse( in phrase_parse() function
|
/third_party/boost/libs/spirit/example/x3/num_list/ |
D | num_list1.cpp | 37 using x3::phrase_parse; in parse_numbers() 40 bool r = phrase_parse( in parse_numbers()
|
D | num_list4.cpp | 39 using x3::phrase_parse; in parse_numbers() 43 bool r = phrase_parse(first, last, in parse_numbers()
|
D | num_list3.cpp | 36 using x3::phrase_parse; in parse_numbers() 42 bool r = phrase_parse(first, last, in parse_numbers()
|
D | num_list2.cpp | 36 using x3::phrase_parse; in parse_numbers() 42 bool r = phrase_parse(first, last, in parse_numbers()
|
/third_party/boost/libs/spirit/example/qi/ |
D | num_list1.cpp | 37 using qi::phrase_parse; in parse_numbers() 40 bool r = phrase_parse( in parse_numbers()
|
D | complex_number.cpp | 36 using boost::spirit::qi::phrase_parse; in parse_complex() 42 bool r = phrase_parse(first, last, in parse_complex()
|
D | num_list4.cpp | 40 using qi::phrase_parse; in parse_numbers() 44 bool r = phrase_parse(first, last, in parse_numbers()
|
D | num_list3.cpp | 41 using qi::phrase_parse; in parse_numbers() 46 bool r = phrase_parse(first, last, in parse_numbers()
|
D | num_list2.cpp | 41 using qi::phrase_parse; in parse_numbers() 46 bool r = phrase_parse(first, last, in parse_numbers()
|
D | custom_string.cpp | 67 using boost::spirit::qi::phrase_parse; in parse_qstring() 69 bool r = phrase_parse(first, last, +char_, space, t); in parse_qstring()
|
/third_party/boost/libs/spirit/example/support/utree/ |
D | parse_sexpr.cpp | 19 using boost::spirit::qi::phrase_parse; in main() 41 bool r = phrase_parse(iter, end, p, ws); in main()
|
/third_party/boost/libs/spirit/example/x3/ |
D | complex_number.cpp | 34 using boost::spirit::x3::phrase_parse; in parse_complex() 42 bool r = phrase_parse(first, last, in parse_complex()
|
/third_party/boost/libs/spirit/example/karma/ |
D | num_list2.cpp | 34 using boost::spirit::qi::phrase_parse; in parse_numbers() 37 bool r = phrase_parse(first, last, double_ % ',', space, v); in parse_numbers()
|
D | num_list1.cpp | 38 using qi::phrase_parse; in parse_numbers() 41 bool r = phrase_parse(first, last, double_ >> *(',' >> double_), space, v); in parse_numbers()
|