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

12

  /prebuilts/ndk/8/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/9/sources/cxx-stl/EH/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/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
type_traits 424 /// remove_volatile
426 struct remove_volatile
430 struct remove_volatile<_Tp volatile>
438 remove_const<typename remove_volatile<_Tp>::type>::type type;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
type_traits 424 /// remove_volatile
426 struct remove_volatile
430 struct remove_volatile<_Tp volatile>
438 remove_const<typename remove_volatile<_Tp>::type>::type type;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
type_traits 424 /// remove_volatile
426 struct remove_volatile
430 struct remove_volatile<_Tp volatile>
438 remove_const<typename remove_volatile<_Tp>::type>::type type;
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
type_traits 424 /// remove_volatile
426 struct remove_volatile
430 struct remove_volatile<_Tp volatile>
438 remove_const<typename remove_volatile<_Tp>::type>::type type;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
type_traits     [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
type_traits     [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
type_traits     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
type_traits 57 template <class T> struct remove_volatile;
144 using remove_volatile_t = typename remove_volatile<T>::type; // C++14
269 // remove_volatile
271 template <class _Tp> struct _LIBCPP_TYPE_VIS remove_volatile {typedef _Tp type;};
272 template <class _Tp> struct _LIBCPP_TYPE_VIS remove_volatile<volatile _Tp> {typedef _Tp type;};
274 template <class _Tp> using remove_volatile_t = typename remove_volatile<_Tp>::type;
280 {typedef typename remove_volatile<typename remove_const<_Tp>::type>::type type;};
    [all...]

Completed in 833 milliseconds

12