Searched defs:remove_pointer (Results 1 – 11 of 11) sorted by relevance
137 template< class T > struct remove_pointer { typedef T type; }; argument138 template< class T > struct remove_pointer<T*> { typedef T type; }; argument139 template< class T > struct remove_pointer<T* const> { typedef T type; }; struct140 template< class T > struct remove_pointer<T* volatile> { typedef T type; }; struct141 template< class T > struct remove_pointer<T* const volatile> { typedef T type; }; argument
21 struct remove_pointer { struct26 struct remove_pointer<T *> { struct30 int check_remove0[is_same<remove_pointer<int_1_ptr>::type, int_1>::value? 1 : -1]; argument
22 struct remove_pointer { struct23 using type _LIBCPP_NODEBUG = __remove_pointer(_Tp); argument
64 template <class T> struct remove_pointer{ typedef typename boost::detail::remove_pointer_imp2<T>::t… struct
109 std::remove_pointer_t<T> remove_pointer() { in remove_pointer() function
394 void remove_pointer(const virtual_pointer_t ptr) { in remove_pointer() function