Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dremove_all_extents.hpp18 template <class T> struct remove_all_extents{ typedef T type; }; struct
21 template <class T, std::size_t N> struct remove_all_extents<T[N]> : public remove_all_extents<T>{}; struct
22 template <class T, std::size_t N> struct remove_all_extents<T const[N]> : public remove_all_extents… struct
23 template <class T, std::size_t N> struct remove_all_extents<T volatile[N]> : public remove_all_exte… struct
24 template <class T, std::size_t N> struct remove_all_extents<T const volatile[N]> : public remove_al… struct
26 template <class T> struct remove_all_extents<T[]> : public remove_all_extents<T>{}; struct
27 template <class T> struct remove_all_extents<T const[]> : public remove_all_extents<T const>{}; struct
28 template <class T> struct remove_all_extents<T volatile[]> : public remove_all_extents<T volatile>{… struct
29 template <class T> struct remove_all_extents<T const volatile[]> : public remove_all_extents<T cons… struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/align/test/
Dalignment_of_test.cpp31 struct remove_all_extents { struct
36 struct remove_all_extents<T[]> { struct
37 typedef typename remove_all_extents<T>::type type; argument
41 struct remove_all_extents<T[N]> { struct
42 typedef typename remove_all_extents<T>::type type; argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/
Dremove_all_extents.h23 struct remove_all_extents { struct
24 using type _LIBCPP_NODEBUG = __remove_all_extents(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dremove_all_extents.h23 struct remove_all_extents { struct
24 using type _LIBCPP_NODEBUG = __remove_all_extents(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dremove_all_extents.h23 struct remove_all_extents { struct
24 using type _LIBCPP_NODEBUG = __remove_all_extents(_Tp); argument
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/
H A Dremove_all_extents.h23 struct remove_all_extents { struct
24 using type _LIBCPP_NODEBUG = __remove_all_extents(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dremove_all_extents.h23 struct remove_all_extents { struct
24 using type _LIBCPP_NODEBUG = __remove_all_extents(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/
Dremove_all_extents.h23 struct remove_all_extents { struct
24 using type _LIBCPP_NODEBUG = __remove_all_extents(_Tp); argument
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dtype_traits.hpp649 struct remove_all_extents struct
650 { typedef T type;};
653 struct remove_all_extents<T[]> struct
654 { typedef typename remove_all_extents<T>::type type; };
657 struct remove_all_extents<T[N]> struct
658 { typedef typename remove_all_extents<T>::type type;};
/aosp_15_r20/external/llvm-libc/src/__support/CPP/type_traits/
H A Dremove_all_extents.h23 struct remove_all_extents : cpp::type_identity<remove_all_extents_t<T>> {}; struct
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/meta/meta.unary/
H A Ddependent_return_type.compile.pass.cpp82 std::remove_all_extents_t<T> remove_all_extents() { in remove_all_extents() function