Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dremove_const.hpp21 template <class T> struct remove_const{ typedef T type; }; argument
22 template <class T> struct remove_const<T const>{ typedef T type; }; argument
25 template <class T, std::size_t N> struct remove_const<T const[N]>{ typedef T type[N]; }; argument
27 template <class T> struct remove_const<T const[]>{ typedef T type[]; }; struct
/aosp_15_r20/system/nvram/messages/include/nvram/messages/
H A Dtype_traits.h31 struct remove_const { struct
35 struct remove_const<const T> { argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dremove_const.h22 struct remove_const { struct
23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dremove_const.h22 struct remove_const { struct
23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dremove_const.h22 struct remove_const { struct
23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/
Dremove_const.h22 struct remove_const { struct
23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/
Dremove_const.h22 struct remove_const { struct
23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/
H A Dremove_const.h22 struct remove_const { struct
23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
/aosp_15_r20/external/clang/test/SemaTemplate/
H A Dtemp_class_spec.cpp98 struct remove_const { struct
103 struct remove_const<const T> { argument
107 int remove_const0[is_same<remove_const<const int>::type, int>::value? 1 : -1]; argument
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dunique_ptr_meta_utils.hpp146 struct remove_const struct
148 typedef T type;
152 struct remove_const<const T> struct
154 typedef T type;
Dtype_traits.hpp557 struct remove_const struct
558 { typedef T type; };
561 struct remove_const< const T> struct
562 { typedef T type; };
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/meta/meta.unary/
H A Ddependent_return_type.compile.pass.cpp87 std::remove_const_t<T> remove_const() { in remove_const() function
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DBlasKernel.cpp27 T* remove_const(const T* x) { in remove_const() function