Home
last modified time | relevance | path

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

/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; }; struct
25 template <class T, std::size_t N> struct remove_const<T const[N]>{ typedef T type[N]; }; struct
27 template <class T> struct remove_const<T const[]>{ typedef T type[]; }; struct
/external/cronet/third_party/libc++/src/include/__type_traits/
Dremove_const.h22 struct remove_const { struct
23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
/external/clang/test/SemaTemplate/
Dtemp_class_spec.cpp98 struct remove_const { struct
103 struct remove_const<const T> { struct
107 int remove_const0[is_same<remove_const<const int>::type, int>::value? 1 : -1]; argument
/external/cronet/third_party/libc++/src/test/std/utilities/meta/meta.unary/
Ddependent_return_type.compile.pass.cpp85 std::remove_const_t<T> remove_const() { in remove_const() function
/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; };