Lines Matching refs:bind_n

67 #define BOOST_LOCAL_FUNCTION_AUX_bind_type(z, bind_n, unused) \  argument
68 BOOST_PP_CAT(Bind, bind_n)
70 #define BOOST_LOCAL_FUNCTION_AUX_comma_bind_type(z, bind_n, unused) \ argument
71 , BOOST_LOCAL_FUNCTION_AUX_bind_type(z, bind_n, ~)
73 #define BOOST_LOCAL_FUNCTION_AUX_comma_bind_ref(z, bind_n, unused) \ argument
74 , BOOST_LOCAL_FUNCTION_AUX_bind_type(z, bind_n, ~) &
76 #define BOOST_LOCAL_FUNCTION_AUX_comma_bind_tparam(z, bind_n, unused) \ argument
77 , typename BOOST_LOCAL_FUNCTION_AUX_bind_type(z, bind_n, ~)
79 #define BOOST_LOCAL_FUNCTION_AUX_bind_name(z, bind_n, unused) \ argument
80 BOOST_PP_CAT(bing, bind_n)
82 #define BOOST_LOCAL_FUNCTION_AUX_comma_bind_param_decl(z, bind_n, unused) \ argument
84 BOOST_LOCAL_FUNCTION_AUX_bind_type(z, bind_n, ~) & \
85 BOOST_LOCAL_FUNCTION_AUX_bind_name(z, bind_n, ~)
87 #define BOOST_LOCAL_FUNCTION_AUX_bind_member(z, bind_n, unsued) \ argument
88 BOOST_PP_CAT(BOOST_LOCAL_FUNCTION_AUX_bind_name(z, bind_n, ~), _)
90 #define BOOST_LOCAL_FUNCTION_AUX_comma_bind_member_deref(z, bind_n, unsued) \ argument
91 , member_deref< BOOST_LOCAL_FUNCTION_AUX_bind_type(z, bind_n, ~) >( \
92 BOOST_LOCAL_FUNCTION_AUX_bind_member(z, bind_n, ~))
94 #define BOOST_LOCAL_FUNCTION_AUX_bind_member_init(z, bind_n, unused) \ argument
95 BOOST_LOCAL_FUNCTION_AUX_bind_member(z, bind_n, ~) = member_addr( \
96 BOOST_LOCAL_FUNCTION_AUX_bind_name(z, bind_n, ~));
98 #define BOOST_LOCAL_FUNCTION_AUX_bind_member_decl(z, bind_n, unused) \ argument
101 BOOST_LOCAL_FUNCTION_AUX_bind_type(z, bind_n, ~) \
102 >::pointer BOOST_LOCAL_FUNCTION_AUX_bind_member(z, bind_n, ~) ;