Home
last modified time | relevance | path

Searched defs:remove_volatile (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dremove_volatile.hpp21 template <class T> struct remove_volatile{ typedef T type; }; argument
22 template <class T> struct remove_volatile<T volatile>{ typedef T type; }; struct
25 template <class T, std::size_t N> struct remove_volatile<T volatile[N]>{ typedef T type[N]; }; struct
27 template <class T> struct remove_volatile<T volatile[]>{ typedef T type[]; }; struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dremove_volatile.h22 struct remove_volatile { struct
23 using type _LIBCPP_NODEBUG = __remove_volatile(_Tp); argument
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/
H A Dremove_volatile.h22 struct remove_volatile { struct
23 using type _LIBCPP_NODEBUG = __remove_volatile(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/
Dremove_volatile.h22 struct remove_volatile { struct
23 using type _LIBCPP_NODEBUG = __remove_volatile(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dremove_volatile.h22 struct remove_volatile { struct
23 using type _LIBCPP_NODEBUG = __remove_volatile(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/
Dremove_volatile.h22 struct remove_volatile { struct
23 using type _LIBCPP_NODEBUG = __remove_volatile(_Tp); argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dremove_volatile.h22 struct remove_volatile { struct
23 using type _LIBCPP_NODEBUG = __remove_volatile(_Tp); argument
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dunique_ptr_meta_utils.hpp161 struct remove_volatile struct
163 typedef T type;
167 struct remove_volatile<volatile T> struct
169 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.cpp119 std::remove_volatile_t<T> remove_volatile() { in remove_volatile() function