• Home
  • Raw
  • Download

Lines Matching refs:make

41 template<class T> T make();
51 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (+typeof_::make<X>()))
57 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (-typeof_::make<X>()))
63 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (typeof_::make<X>()+typeof_::make<Y>()))
69 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (typeof_::make<X>()-typeof_::make<Y>()))
75 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (typeof_::make<X>()*typeof_::make<Y>()))
81 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (typeof_::make<X>()/typeof_::make<Y>()))
87 … X> struct unary_plus_typeof_helper { typedef __typeof__((+typeof_::make<X>())) type; };
88 … X> struct unary_minus_typeof_helper { typedef __typeof__((-typeof_::make<X>())) type; };
90 …> struct add_typeof_helper { typedef __typeof__((typeof_::make<X>()+typeof_::make<Y>())) ty…
91 …> struct subtract_typeof_helper { typedef __typeof__((typeof_::make<X>()-typeof_::make<Y>())) ty…
92 …> struct multiply_typeof_helper { typedef __typeof__((typeof_::make<X>()*typeof_::make<Y>())) ty…
93 …> struct divide_typeof_helper { typedef __typeof__((typeof_::make<X>()/typeof_::make<Y>())) ty…
97 template<typename X> struct unary_plus_typeof_helper { typedef typeof((+typeof_::make<X>…
98 template<typename X> struct unary_minus_typeof_helper { typedef typeof((-typeof_::make<X>…
100 …me Y> struct add_typeof_helper { typedef typeof((typeof_::make<X>()+typeof_::make<Y>())) ty…
101 …me Y> struct subtract_typeof_helper { typedef typeof((typeof_::make<X>()-typeof_::make<Y>())) ty…
102 …me Y> struct multiply_typeof_helper { typedef typeof((typeof_::make<X>()*typeof_::make<Y>())) ty…
103 …me Y> struct divide_typeof_helper { typedef typeof((typeof_::make<X>()/typeof_::make<Y>())) ty…