Searched refs:by_ref (Results 1 – 11 of 11) sorted by relevance
34 a = 'a' >> !by_ref(b); in test_main()43 b = epsilon >> by_ref(c); in test_main()48 c = epsilon >> by_ref(a); in test_main()73 b = epsilon >> by_ref(c); in test_main()74 a = 'a' >> !by_ref(b); in test_main()75 c = epsilon >> by_ref(a); in test_main()102 b = epsilon >> by_ref(c); in test_main()103 c = epsilon >> by_ref(a); in test_main()104 a = 'a' >> !by_ref(b); in test_main()130 c = epsilon >> by_ref(a); in test_main()[all …]
169 by_ref(parentheses) // a balanced set of parentheses in test4()225 group = '(' >> by_ref(expression) >> ')'; in test6()
24 parens = L('(') >> *( keep( +~(set=L('('),L(')')) ) | by_ref(parens) ) >> L(')'); in get_test_cases()
62 TYPEOF_TEST( '(' >> by_ref(expression2) >> ')'); in test_actions()
178 group = '(' >> by_ref(expression) >> ')'; in test5()
71 cregex parens = '(' >> *( keep( +~(set='(',')') ) | by_ref(parens) ) >> ')'; in test_misc2()
48 auto by_ref = [](auto&) { }; in main() local50 by_ref(xs); in main()51 by_ref(hana::front(xs)); in main()52 by_ref(hana::at_c<0>(xs)); in main()53 by_ref(hana::back(xs)); in main()
70 Consider the following code, which uses the `by_ref()` helper to define a recursive regular express…80 by_ref(parentheses) // a balanced set of parentheses87 expressions cannot do. The `by_ref()` helper makes it possible. It allows one regex object to be em…99 group = '(' >> by_ref(expression) >> ')';116 `by_ref()` to embed `expression` by reference. In all other places, it is sufficient to embed the o…219 parentheses = '(' >> *( keep( +~(set='(',')') ) | by_ref(parentheses) ) >> ')';
67 sregex group = '(' >> by_ref(expr) >> ')'; // (1)77 [[1) `sregex group = '(' >> by_ref(expr) >> ')';`]161 b = by_ref(a);
644 by_ref(basic_regex<BidiIter> const &rex) in by_ref() function
3561 boost/xpressive/by_ref.html