Home
last modified time | relevance | path

Searched defs:remove_cv (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dremove_cv.hpp21 template <class T> struct remove_cv{ typedef T type; }; argument
22 template <class T> struct remove_cv<T const>{ typedef T type; }; argument
23 template <class T> struct remove_cv<T volatile>{ typedef T type; }; struct
24 template <class T> struct remove_cv<T const volatile>{ typedef T type; }; argument
27 template <class T, std::size_t N> struct remove_cv<T const[N]>{ typedef T type[N]; }; struct
28 template <class T, std::size_t N> struct remove_cv<T const volatile[N]>{ typedef T type[N]; }; argument
29 template <class T, std::size_t N> struct remove_cv<T volatile[N]>{ typedef T type[N]; }; argument
31 template <class T> struct remove_cv<T const[]>{ typedef T type[]; }; struct
32 template <class T> struct remove_cv<T const volatile[]>{ typedef T type[]; }; argument
33 template <class T> struct remove_cv<T volatile[]>{ typedef T type[]; }; argument
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/intrusive/include/boost/intrusive/detail/
Dhas_member_function_callable_with.hpp70 template<typename T> struct remove_cv { typedef T type; }; argument
71 template<typename T> struct remove_cv<const T> { typedef T type; }; struct
72 template<typename T> struct remove_cv<const volatile T> { typedef T type; }; argument
73 template<typename T> struct remove_cv<volatile T> { typedef T type; }; struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/align/test/
Dalignment_of_test.cpp46 struct remove_cv { struct
51 struct remove_cv<const T> { argument
56 struct remove_cv<volatile T> { argument
61 struct remove_cv<const volatile T> { argument
68 typename remove_cv<typename remove_all_extents<typename argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dremove_cv.h24 struct remove_cv { struct
25 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dremove_cv.h21 struct remove_cv { struct
22 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/
Dremove_cv.h23 struct remove_cv { struct
24 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/
H A Dremove_cv.h23 struct remove_cv { struct
24 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/
Dremove_cv.h21 struct remove_cv { struct
22 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dremove_cv.h23 struct remove_cv { struct
24 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dtype_traits.hpp567 template<typename T> struct remove_cv { typedef T type; }; struct
568 template<typename T> struct remove_cv<const T> { typedef T type; }; argument
569 template<typename T> struct remove_cv<const volatile T> { typedef T type; }; argument
570 template<typename T> struct remove_cv<volatile T> { typedef T type; }; argument
Dunique_ptr_meta_utils.hpp176 struct remove_cv struct
179 <typename remove_const<T>::type>::type type;
/aosp_15_r20/external/llvm-libc/src/__support/CPP/type_traits/
H A Dremove_cv.h18 template <class T> struct remove_cv : cpp::type_identity<T> {}; struct
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/meta/meta.unary/
H A Ddependent_return_type.compile.pass.cpp92 std::remove_cv_t<T> remove_cv() { in remove_cv() function