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

12

  /prebuilts/ndk/current/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...]
  /external/libcxx/include/
type_traits 63 template <class T> struct remove_volatile;
151 using remove_volatile_t = typename remove_volatile<T>::type; // C++14
298 // remove_volatile
300 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY remove_volatile {typedef _Tp type;};
301 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY remove_volatile<volatile _Tp> {typedef _Tp type;};
303 template <class _Tp> using remove_volatile_t = typename remove_volatile<_Tp>::type;
309 {typedef typename remove_volatile<typename remove_const<_Tp>::type>::type type;};
    [all...]

Completed in 2515 milliseconds

12