Searched refs:lexeme_d (Results 1 – 25 of 30) sorted by relevance
12
/third_party/boost/tools/quickbook/src/ |
D | post_process.cpp | 257 …tag = (cl::lexeme_d[+(cl::alnum_p | '_' | ':')]) [boost::bind(&tidy_grammar::do_tag, &self, _1, _… in definition() 261 >> cl::lexeme_d[cl::str_p("pre")] in definition() 266 >> cl::lexeme_d[">" >> *cl::space_p] in definition() 271 >> cl::lexeme_d[">" >> *cl::space_p] in definition() 284 >> cl::lexeme_d in definition() 294 … start_tag = '<' >> tag >> *(cl::anychar_p - '>') >> cl::lexeme_d['>' >> *cl::space_p]; in definition() 296 … '<' >> tag >> *(cl::anychar_p - ("/>" | cl::ch_p('>'))) >> cl::lexeme_d["/>" >> *cl::space_p] in definition() 297 | "<?" >> tag >> *(cl::anychar_p - '?') >> cl::lexeme_d["?>" >> *cl::space_p] in definition() 298 | "<!--" >> *(cl::anychar_p - "-->") >> cl::lexeme_d["-->" >> *cl::space_p] in definition() 299 | "<!" >> tag >> *(cl::anychar_p - '>') >> cl::lexeme_d['>' >> *cl::space_p] in definition() [all …]
|
/third_party/boost/boost/spirit/home/classic/utility/ |
D | distinct.hpp | 61 return lexeme_d[chseq_p(str) >> ~epsilon_p(tail)]; in operator ()() 108 lexeme_d[as_parser<ParserT>::convert(subject) >> ~epsilon_p(tail)]; in operator []() 160 return lexeme_d[chseq_p(str) >> ~epsilon_p(tail)]; in operator ()() 218 lexeme_d[as_parser<ParserT>::convert(subject) >> ~epsilon_p(tail)]; in operator []()
|
/third_party/boost/libs/property_tree/examples/ |
D | info_grammar_spirit.cpp | 37 string = lexeme_d[+chr]; in definition() 38 qstring = lexeme_d['"' >> *qchr >> '"']; in definition() 39 cstring = lexeme_d['"' >> *qchr >> '"' >> '\\']; in definition()
|
/third_party/boost/libs/spirit/classic/example/fundamental/ |
D | functor_parser.cpp | 69 return parse(str, lexeme_d[number_parser_p[assign_a(n)]], space_p).full; in parse_number() 78 lexeme_d[number_parser_p[push_back_a(n)]] in parse_numbers() 79 >> *(',' >> lexeme_d[number_parser_p[push_back_a(n)]]), in parse_numbers()
|
D | boiler_plate.cpp | 52 *lexeme_d[(+graph_p)[my_action()]] in definition()
|
D | tree_calc_grammar.hpp | 39 integer = leaf_node_d[ lexeme_d[ in definition()
|
D | matching_tags.cpp | 49 >> lexeme_d in definition()
|
D | calc_plain.cpp | 73 = lexeme_d[(+digit_p)[&do_int]] in definition()
|
D | subrule_calc.cpp | 76 = lexeme_d[(+digit_p)[&do_int]] in definition()
|
D | full_calc.cpp | 112 lexeme_d[ (+digit_p)[push_int(self.eval)] ] in definition()
|
D | calc_debug.cpp | 116 lexeme_d[ (+digit_p)[push_int(self.eval)] ] in definition()
|
/third_party/boost/libs/spirit/classic/example/intermediate/simple_xml/ |
D | xml_g.hpp | 110 str = SP::lexeme_d[+(SP::anychar_p - '<')] in definition() 119 >> SP::lexeme_d[+SP::alpha_p] in definition() 134 >>SP::lexeme_d[+SP::alpha_p] in definition() 140 >> SP::lexeme_d[+(SP::anychar_p - '"')] in definition()
|
/third_party/boost/libs/spirit/classic/test/ |
D | directives_tests.cpp | 56 hit = (+(lexeme_d[+(alpha_p | '\'')])).parse(scan); in directives_test1() 61 hit = (+(lexeme_d[lexeme_d[+anychar_p]])).parse(scan); in directives_test1() 146 r = lexeme_d[rr]; in definition()
|
D | select_p_with_rule.cpp | 38 lexeme_d in definition() 50 lexeme_d in definition()
|
D | bug_fixes.cpp | 152 parse(" aaaaaaaaa ", lexeme_d[*ch_p('a')] >> end_p, space_p).full in bug_005() 166 parse(" aaaaaaaaa ", lexeme_d[*ch_p('a')] >> end_p, ch_p(' ')).full in bug_005()
|
D | tree_to_xml.cpp | 39 integer = leaf_node_d[ lexeme_d[ in definition()
|
/third_party/boost/boost/wave/util/ |
D | interpret_pragma.hpp | 160 >> lexeme_d[ in interpret_pragma() 165 | lexeme_d[ in interpret_pragma()
|
/third_party/boost/libs/spirit/classic/example/fundamental/more_calculators/ |
D | calc_with_variables.cpp | 187 lexeme_d in definition() 195 lexeme_d["var" >> space_p] >> var_decl >> *(',' >> var_decl) in definition()
|
D | vmachine_calc.cpp | 206 lexeme_d[ (+digit_p)[push_int(self.code)] ] in definition()
|
D | ast_calc2.cpp | 118 integer = leaf_node_d[ lexeme_d[ (!ch_p('-') >> +digit_p) ] ]; in main()
|
/third_party/boost/libs/spirit/classic/example/techniques/ |
D | multiple_scanners.cpp | 30 rr = +(lexeme_d[r] >> as_lower_d[r] >> r); in definition()
|
D | nabialek.cpp | 59 name = lexeme_d[repeat_p(1,20)[alnum_p | '_']]; in definition()
|
/third_party/boost/libs/spirit/classic/example/techniques/no_rules_with_typeof/ |
D | opaque_rule_parser.cpp | 34 lexeme_d[ str >> +space_p ]
|
D | rule_parser_1_1.cpp | 73 >> lexeme_d[ !skipper ]
|
D | rule_parser_1_2.cpp | 69 >> lexeme_d[ !space_p ] in BOOST_SPIRIT_ACTION_PLACEHOLDER()
|
12