Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A 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; }; argument
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Ddsutils.c80 struct acpi_walk_state *walk_state, u8 add_reference) in acpi_ds_do_implicit_return()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Dtype_traits.hpp365 struct add_reference : add_lvalue_reference<T> struct