HomeSort by relevance Sort by last modified time
    Searched full:remove_volatile (Results 1 - 25 of 27) sorted by null

1 2

  /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) \
  /external/libcxx/test/std/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), "");
  /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/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 557 COMPILE_ASSERT_TYPES_EQ(int, remove_volatile<int>::type);
558 COMPILE_ASSERT_TYPES_EQ(int, remove_volatile<volatile int>::type);
559 COMPILE_ASSERT_TYPES_EQ(int *, remove_volatile<int * volatile>::type);
562 remove_volatile<volatile int *>::type);
564 remove_volatile<const volatile int>::type);
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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;
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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;
  /prebuilts/misc/windows/protobuf2.5/include/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;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 50 // remove_volatile
104 template <class T> struct remove_volatile;
302 template<typename T> struct remove_volatile { typedef T type; }; struct in namespace:google::protobuf::internal
303 template<typename T> struct remove_volatile<T volatile> { typedef T type; }; struct in namespace:google::protobuf::internal
305 typedef typename remove_const<typename remove_volatile<T>::type>::type type;
  /prebuilts/tools/linux-x86_64/protoc/include/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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
type_traits 407 /// remove_volatile
409 struct remove_volatile
413 struct remove_volatile<_Tp volatile>
421 remove_const<typename remove_volatile<_Tp>::type>::type type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
type_traits 407 /// remove_volatile
409 struct remove_volatile
413 struct remove_volatile<_Tp volatile>
421 remove_const<typename remove_volatile<_Tp>::type>::type type;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
type_traits 407 /// remove_volatile
409 struct remove_volatile
413 struct remove_volatile<_Tp volatile>
421 remove_const<typename remove_volatile<_Tp>::type>::type type;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
type_traits 407 /// remove_volatile
409 struct remove_volatile
413 struct remove_volatile<_Tp volatile>
421 remove_const<typename remove_volatile<_Tp>::type>::type type;
  /ndk/sources/cxx-stl/stlport/stlport/
type_traits 608 struct remove_volatile
614 struct remove_volatile<_Tp volatile>
622 typedef typename remove_const<typename remove_volatile<_Tp>::type>::type type;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/
type_traits 608 struct remove_volatile
614 struct remove_volatile<_Tp volatile>
622 typedef typename remove_const<typename remove_volatile<_Tp>::type>::type type;
  /external/skia/include/private/
SkTLogic.h 32 template <typename T> using remove_volatile_t = typename std::remove_volatile<T>::type;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
type_traits     [all...]
  /external/libbrillo/brillo/
any.h 104 typename std::remove_volatile<NonPointer>::type>::type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
type_traits     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
type_traits     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
type_traits     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
type_traits 58 template <class T> struct remove_volatile;
146 using remove_volatile_t = typename remove_volatile<T>::type; // C++14
271 // remove_volatile
273 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY remove_volatile {typedef _Tp type;};
274 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY remove_volatile<volatile _Tp> {typedef _Tp type;};
276 template <class _Tp> using remove_volatile_t = typename remove_volatile<_Tp>::type;
282 {typedef typename remove_volatile<typename remove_const<_Tp>::type>::type type;};
    [all...]

Completed in 1608 milliseconds

1 2