HomeSort by relevance Sort by last modified time
    Searched refs:remove_volatile (Results 1 - 8 of 8) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
remove_volatile.hpp 23 #include <boost/type_traits/msvc/remove_volatile.hpp>
69 // * convert a type T to a non-volatile type - remove_volatile<T>
71 BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_volatile,T,typename boost::detail::remove_volatile_impl<T>::type)
72 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_volatile,T&,T&)
74 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_volatile,T volatile[N],T type[N])
75 BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_2(typename T,std::size_t N,remove_volatile,T const volatile[N],T const type[N])
80 BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_volatile,T,typename boost::detail::remove_volatile_impl<T>::type)
cv_traits.hpp 10 // is_const, is_volatile, remove_const, remove_volatile, remove_cv.
21 #include <boost/type_traits/remove_volatile.hpp>
broken_compiler_spec.hpp 47 BOOST_TT_AUX_BROKEN_TYPE_TRAIT_SPEC1(remove_volatile,T volatile,T) \
48 BOOST_TT_AUX_BROKEN_TYPE_TRAIT_SPEC1(remove_volatile,T const volatile,T const) \
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.cv/
remove_volatile.pass.cpp 12 // remove_volatile
19 static_assert((std::is_same<typename std::remove_volatile<T>::type, U>::value), "");
  /external/chromium_org/third_party/cld/base/
type_traits.h 21 // remove_volatile
146 template<typename T> struct remove_volatile { typedef T type; }; struct in namespace:base
147 template<typename T> struct remove_volatile<T volatile> { typedef T type; }; struct in namespace:base
149 typedef typename remove_const<typename remove_volatile<T>::type>::type type;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits.h 49 // remove_volatile
84 template <class T> struct remove_volatile;
275 template<typename T> struct remove_volatile { typedef T type; }; struct in namespace:google::protobuf::internal
276 template<typename T> struct remove_volatile<T volatile> { typedef T type; }; struct in namespace:google::protobuf::internal
278 typedef typename remove_const<typename remove_volatile<T>::type>::type type;
type_traits_unittest.cc 69 using google::protobuf::internal::remove_volatile;
577 COMPILE_ASSERT_TYPES_EQ(int, remove_volatile<int>::type);
578 COMPILE_ASSERT_TYPES_EQ(int, remove_volatile<volatile int>::type);
579 COMPILE_ASSERT_TYPES_EQ(int *, remove_volatile<int * volatile>::type);
582 remove_volatile<volatile int *>::type);
584 remove_volatile<const volatile int>::type);
  /external/llvm/include/llvm/Support/
type_traits.h 106 template <typename T> struct remove_volatile { typedef T type; }; struct in namespace:llvm
107 template <typename T> struct remove_volatile<volatile T> { typedef T type; }; struct in namespace:llvm
112 typedef typename remove_const<typename remove_volatile<T>::type>::type type;

Completed in 273 milliseconds