Searched defs:add_reference (Results 1 – 11 of 11) sorted by relevance
40 template <class T> struct add_reference struct42 typedef typename boost::detail::add_reference_impl<T>::type type;44 template <class T> struct add_reference<T&> struct46 typedef T& type;50 template <> struct add_reference<void> { typedef void type; }; struct52 template <> struct add_reference<const void> { typedef const void type; }; argument53 template <> struct add_reference<const volatile void> { typedef const volatile void type; }; struct54 template <> struct add_reference<volatile void> { typedef volatile void type; }; argument
38 struct add_reference { struct39 typedef T& type;43 struct add_reference<void> { struct44 typedef void type;48 struct add_reference<const void> { struct49 typedef const void type;
9 struct add_reference { struct14 struct add_reference<T&> { struct15 typedef T &type;
9 struct add_reference { struct14 struct add_reference<T&> { argument15 typedef T &type;
177 struct add_reference { struct178 typedef T& type;
10 struct add_reference { struct25 …<T>::type type; // expected-note{{in instantiation of template class 'add_reference::apply<void>' … argument
13 struct add_reference { struct19 apply<add_reference, int>::type ir = i; argument
17 struct add_reference { struct26 typename add_reference<T>::type argument
106 def add_reference(name, obj): function
985 void add_reference(struct chip_instance *const chip_instance, in add_reference() function
531 struct add_reference : add_lvalue_reference<T> struct