Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/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; }; argument
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
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/core/include/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;
/aosp_15_r20/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-tuple.cpp9 struct add_reference { struct
14 struct add_reference<T&> { struct
15 typedef T &type;
H A Dexample-bind.cpp9 struct add_reference { struct
14 struct add_reference<T&> { argument
15 typedef T &type;
H A Dmetafunctions.cpp177 struct add_reference { struct
178 typedef T& type;
/aosp_15_r20/external/clang/test/SemaTemplate/
H A Dmetafun-apply.cpp10 struct add_reference { struct
25 …<T>::type type; // expected-note{{in instantiation of template class 'add_reference::apply<void>' … argument
H A Dinstantiate-template-template-parm.cpp13 struct add_reference { struct
19 apply<add_reference, int>::type ir = i; argument
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dnested-name-spec-locations.cpp17 struct add_reference { struct
26 typename add_reference<T>::type argument
/aosp_15_r20/external/pytorch/torch/utils/viz/
H A D_cycles.py106 def add_reference(name, obj): function
/aosp_15_r20/external/coreboot/util/sconfig/
H A Dmain.c985 void add_reference(struct chip_instance *const chip_instance, in add_reference() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dtype_traits.hpp531 struct add_reference : add_lvalue_reference<T> struct