Home
last modified time | relevance | path

Searched defs:add_reference (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/boost/type_traits/
Dadd_reference.hpp40 template <class T> struct add_reference struct
42 typedef typename boost::detail::add_reference_impl<T>::type type;
44 template <class T> struct add_reference<T&> struct
46 typedef T& type;
50 template <> struct add_reference<void> { typedef void type; }; struct
52 template <> struct add_reference<const void> { typedef const void type; }; struct
53 template <> struct add_reference<const volatile void> { typedef const volatile void type; }; struct
54 template <> struct add_reference<volatile void> { typedef volatile void type; }; struct
/third_party/boost/boost/interprocess/detail/
Dtype_traits.hpp69 struct add_reference struct
71 typedef T& type;
75 struct add_reference<T&> struct
77 typedef T& type;
81 struct add_reference<void> struct
83 typedef nat &type;
87 struct add_reference<const void> struct
89 typedef const nat &type;
/third_party/boost/boost/core/
Ddefault_allocator.hpp38 struct add_reference { struct
39 typedef T& type;
43 struct add_reference<void> { struct
44 typedef void type;
48 struct add_reference<const void> { struct
49 typedef const void type;
/third_party/boost/libs/mp11/test/
Dmp_valid.cpp26 template<class T> using add_reference = T&; typedef
/third_party/gettext/gettext-tools/src/
Drc-str-list.h39 add_reference (refcounted_string_list_ty *rslp) in add_reference() function
/third_party/boost/boost/move/detail/
Dtype_traits.hpp365 struct add_reference : add_lvalue_reference<T> struct