/usr/include/boost/phoenix/core/detail/cpp03/preprocessed
NameSizeModeActions
actor_operator.hpp11010644editdlrm
actor_operator_10.hpp328050644editdlrm
actor_operator_20.hpp923300644editdlrm
actor_operator_30.hpp1809550644editdlrm
actor_operator_40.hpp2986800644editdlrm
actor_operator_50.hpp4455050644editdlrm
actor_result_of.hpp11080644editdlrm
actor_result_of_10.hpp77650644editdlrm
actor_result_of_20.hpp171500644editdlrm
actor_result_of_30.hpp292350644editdlrm
actor_result_of_40.hpp440200644editdlrm
actor_result_of_50.hpp615050644editdlrm
argument.hpp18640644editdlrm
argument_no_predefined_10.hpp33630644editdlrm
argument_no_predefined_20.hpp62830644editdlrm
argument_no_predefined_30.hpp92030644editdlrm
argument_no_predefined_40.hpp121230644editdlrm
argument_no_predefined_50.hpp150430644editdlrm
argument_predefined_10.hpp63230644editdlrm
argument_predefined_20.hpp122430644editdlrm
argument_predefined_30.hpp181630644editdlrm
argument_predefined_40.hpp240830644editdlrm
argument_predefined_50.hpp300030644editdlrm
call.hpp10310644editdlrm
call_10.hpp146590644editdlrm
call_20.hpp382440644editdlrm
call_30.hpp713290644editdlrm
call_40.hpp1139140644editdlrm
call_50.hpp1659990644editdlrm
expression.hpp10730644editdlrm
expression_10.hpp212420644editdlrm
expression_20.hpp604770644editdlrm
expression_30.hpp1188120644editdlrm
expression_40.hpp1962470644editdlrm
expression_50.hpp2927820644editdlrm
function_eval.hpp11260644editdlrm
function_eval_10.hpp284580644editdlrm
function_eval_20.hpp944480644editdlrm
function_eval_30.hpp1978380644editdlrm
function_eval_40.hpp3386280644editdlrm
function_eval_50.hpp5168180644editdlrm
function_eval_expr.hpp11560644editdlrm
function_eval_expr_10.hpp77390644editdlrm
function_eval_expr_20.hpp238760644editdlrm
function_eval_expr_30.hpp498060644editdlrm
function_eval_expr_40.hpp855360644editdlrm
function_eval_expr_50.hpp1310660644editdlrm
Edit: /usr/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_10.hpp (7739B)
/*============================================================================= Copyright (c) 2001-2007 Joel de Guzman Copyright (c) 2016 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ namespace boost { namespace phoenix { namespace detail { namespace tag { struct function_eval {}; template inline Ostream &operator<<( Ostream & os , function_eval) { os << "function_eval"; return os; } } namespace expression { template < typename A0 = void , typename A1 = void , typename A2 = void , typename A3 = void , typename A4 = void , typename A5 = void , typename A6 = void , typename A7 = void , typename A8 = void , typename A9 = void , typename Dummy = void > struct function_eval; template < typename A0 , typename A1 > struct function_eval< A0 , A1 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 > {}; template < typename A0 , typename A1 , typename A2 > struct function_eval< A0 , A1 , A2 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 > struct function_eval< A0 , A1 , A2 , A3 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 , A3 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 > struct function_eval< A0 , A1 , A2 , A3 , A4 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 , A3 , A4 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 > struct function_eval< A0 , A1 , A2 , A3 , A4 , A5 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 , A3 , A4 , A5 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 > struct function_eval< A0 , A1 , A2 , A3 , A4 , A5 , A6 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 , A3 , A4 , A5 , A6 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 > struct function_eval< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 > struct function_eval< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 > {}; template < typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 > struct function_eval< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 > : boost::phoenix::expr< tag:: function_eval , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 > {}; } namespace rule { struct function_eval : expression:: function_eval < meta_grammar , boost::proto::vararg< meta_grammar > > {}; } namespace functional { typedef boost::proto::functional::make_expr< tag:: function_eval > make_function_eval; } namespace result_of { template struct make_function_eval; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 ) > {}; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 , A1 ) > {}; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 , A1 , A2 ) > {}; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 , A1 , A2 , A3 ) > {}; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 , A1 , A2 , A3 , A4 ) > {}; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 , A1 , A2 , A3 , A4 , A5 ) > {}; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 , A1 , A2 , A3 , A4 , A5 , A6 ) > {}; template struct make_function_eval : boost::result_of< functional:: make_function_eval( A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 ) > {}; } template inline typename result_of:: make_function_eval< A0 >::type make_function_eval(A0 const& a0) { return functional::make_function_eval()(a0); } template inline typename result_of:: make_function_eval< A0 , A1 >::type make_function_eval(A0 const& a0 , A1 const& a1) { return functional::make_function_eval()(a0 , a1); } template inline typename result_of:: make_function_eval< A0 , A1 , A2 >::type make_function_eval(A0 const& a0 , A1 const& a1 , A2 const& a2) { return functional::make_function_eval()(a0 , a1 , a2); } template inline typename result_of:: make_function_eval< A0 , A1 , A2 , A3 >::type make_function_eval(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3) { return functional::make_function_eval()(a0 , a1 , a2 , a3); } template inline typename result_of:: make_function_eval< A0 , A1 , A2 , A3 , A4 >::type make_function_eval(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4) { return functional::make_function_eval()(a0 , a1 , a2 , a3 , a4); } template inline typename result_of:: make_function_eval< A0 , A1 , A2 , A3 , A4 , A5 >::type make_function_eval(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5) { return functional::make_function_eval()(a0 , a1 , a2 , a3 , a4 , a5); } template inline typename result_of:: make_function_eval< A0 , A1 , A2 , A3 , A4 , A5 , A6 >::type make_function_eval(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6) { return functional::make_function_eval()(a0 , a1 , a2 , a3 , a4 , a5 , a6); } template inline typename result_of:: make_function_eval< A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 >::type make_function_eval(A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7) { return functional::make_function_eval()(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7); } } } } namespace boost { namespace phoenix { template struct meta_grammar::case_< :: boost :: phoenix :: detail :: tag:: function_eval , Dummy > : enable_rule< :: boost :: phoenix :: detail :: rule:: function_eval , Dummy > {}; } }