HomeSort by relevance Sort by last modified time
    Searched defs:remove_const (Results 1 - 3 of 3) sorted by null

  /external/protobuf/src/google/protobuf/stubs/
type_traits.h 48 // remove_const
83 template <class T> struct remove_const;
273 template<typename T> struct remove_const { typedef T type; }; struct in namespace:google::protobuf::internal
274 template<typename T> struct remove_const<T const> { typedef T type; }; struct in namespace:google::protobuf::internal
278 typedef typename remove_const<typename remove_volatile<T>::type>::type type;
  /external/eigen/Eigen/src/Core/util/
Meta.h 44 template <class T> struct remove_const { typedef T type; }; struct in namespace:Eigen::internal
45 template <class T> struct remove_const<const T> { typedef T type; }; struct in namespace:Eigen::internal
46 template <class T> struct remove_const<const T[]> { typedef T type[]; }; struct in namespace:Eigen::internal
47 template <class T, unsigned int Size> struct remove_const<const T[Size]> { typedef T type[Size]; }; struct in namespace:Eigen::internal
  /external/clang/test/SemaTemplate/
temp_class_spec.cpp 98 struct remove_const { struct
103 struct remove_const<const T> { struct
107 int remove_const0[is_same<remove_const<const int>::type, int>::value? 1 : -1];
108 int remove_const1[is_same<remove_const<const int[3]>::type, int[3]>::value? 1 : -1];

Completed in 89 milliseconds