Searched refs:a_function (Results 1 – 2 of 2) sorted by relevance
54 void a_function() {} in a_function() function218 proto::assert_matches< proto::terminal< void(&)() > >( proto::lit(a_function) ); in test_matches()219 proto::assert_matches< proto::terminal< void(&)() > >( proto::as_child(a_function) ); in test_matches()220 proto::assert_matches< proto::terminal< void(&)() > >( proto::as_expr(a_function) ); in test_matches()222 proto::assert_matches_not< proto::terminal< void(*)() > >( proto::lit(a_function) ); in test_matches()223 proto::assert_matches_not< proto::terminal< void(*)() > >( proto::as_child(a_function) ); in test_matches()224 proto::assert_matches_not< proto::terminal< void(*)() > >( proto::as_expr(a_function) ); in test_matches()226 …o::assert_matches< proto::terminal< proto::convertible_to<void(*)()> > >( proto::lit(a_function) ); in test_matches()227 …sert_matches< proto::terminal< proto::convertible_to<void(*)()> > >( proto::as_child(a_function) ); in test_matches()228 …ssert_matches< proto::terminal< proto::convertible_to<void(*)()> > >( proto::as_expr(a_function) ); in test_matches()[all …]
445 auto a_function(Ts... ts) -> decltype(var_expr(ts...));448 using partial = decltype(a_function<int, T>);