Lines Matching refs:d_
86 boost::proto::terminal<char>::type d_ = {'d'}; in test1() local
110 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_), to_string(sout)); in test1()
114 boost::fusion::for_each(flatten(a_ | b_ >> c_ | d_), to_string(sout)); in test1()
118 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_ | e_ >> f_ >> g_), to_string(sout)); in test1()
122 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_ | e_ >> (f_ | g_) >> h_), to_string(sout)); in test1()
127 boost::fusion::for_each(flatten(a_(b_(c_ >> d_, e_ | f_), g_ >> h_)(i_)), to_string(sout)); in test1()
154 My<boost::proto::terminal<char>::type> d_ = {{'d'}}; in test2() local
178 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_), to_string(sout)); in test2()
182 boost::fusion::for_each(flatten(a_ | b_ >> c_ | d_), to_string(sout)); in test2()
186 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_ | e_ >> f_ >> g_), to_string(sout)); in test2()
190 boost::fusion::for_each(flatten(a_ >> b_ | c_ >> d_ | e_ >> (f_ | g_) >> h_), to_string(sout)); in test2()
195 boost::fusion::for_each(flatten(a_(b_(c_ >> d_, e_ | f_), g_ >> h_)(i_)), to_string(sout)); in test2()