Home
last modified time | relevance | path

Searched refs:phrase_parse (Results 1 – 25 of 123) sorted by relevance

12345

/third_party/boost/boost/spirit/home/qi/
Dparse.hpp106 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()
Dparse_attr.hpp86 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/
Ddistinct.cpp30 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()
Dkeywords.cpp40 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/
Drule1.cpp27 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()
Dtest.hpp43 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/
Drule1.cpp137 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()
Dtest.hpp42 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/
Dparse.hpp128 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/
Dnum_list4.qbk29 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/
Dparse_auto.hpp58 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/
Dnum_list1.cpp37 using x3::phrase_parse; in parse_numbers()
40 bool r = phrase_parse( in parse_numbers()
Dnum_list4.cpp39 using x3::phrase_parse; in parse_numbers()
43 bool r = phrase_parse(first, last, in parse_numbers()
Dnum_list3.cpp36 using x3::phrase_parse; in parse_numbers()
42 bool r = phrase_parse(first, last, in parse_numbers()
Dnum_list2.cpp36 using x3::phrase_parse; in parse_numbers()
42 bool r = phrase_parse(first, last, in parse_numbers()
/third_party/boost/libs/spirit/example/qi/
Dnum_list1.cpp37 using qi::phrase_parse; in parse_numbers()
40 bool r = phrase_parse( in parse_numbers()
Dcomplex_number.cpp36 using boost::spirit::qi::phrase_parse; in parse_complex()
42 bool r = phrase_parse(first, last, in parse_complex()
Dnum_list4.cpp40 using qi::phrase_parse; in parse_numbers()
44 bool r = phrase_parse(first, last, in parse_numbers()
Dnum_list3.cpp41 using qi::phrase_parse; in parse_numbers()
46 bool r = phrase_parse(first, last, in parse_numbers()
Dnum_list2.cpp41 using qi::phrase_parse; in parse_numbers()
46 bool r = phrase_parse(first, last, in parse_numbers()
Dcustom_string.cpp67 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/
Dparse_sexpr.cpp19 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/
Dcomplex_number.cpp34 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/
Dnum_list2.cpp34 using boost::spirit::qi::phrase_parse; in parse_numbers()
37 bool r = phrase_parse(first, last, double_ % ',', space, v); in parse_numbers()
Dnum_list1.cpp38 using qi::phrase_parse; in parse_numbers()
41 bool r = phrase_parse(first, last, double_ >> *(',' >> double_), space, v); in parse_numbers()

12345