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

  /external/protobuf/src/google/protobuf/stubs/
type_traits.h 49 // remove_const
103 template <class T> struct remove_const;
300 template<typename T> struct remove_const { typedef T type; }; struct in namespace:google::protobuf::internal
301 template<typename T> struct remove_const<T const> { typedef T type; }; struct in namespace:google::protobuf::internal
305 typedef typename remove_const<typename remove_volatile<T>::type>::type type;
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx.h 154 template <class _Tp> struct remove_const {typedef _Tp type;}; struct in namespace:std
155 template <class _Tp> struct remove_const<const _Tp> {typedef _Tp type;}; struct in namespace:std
175 is_same<typename remove_const<_Tp>::type, _Up>::value &&
207 is_same<typename remove_const<_Tp>::type, _Up>::value &&
  /external/grpc-grpc/third_party/nanopb/
pb_encode.c 360 static void *remove_const(const void *p) function
375 if (!pb_field_iter_begin(&iter, fields, remove_const(src_struct)))
  /external/eigen/Eigen/src/Core/util/
Meta.h 73 template <class T> struct remove_const { typedef T type; }; struct in namespace:Eigen::internal
74 template <class T> struct remove_const<const T> { typedef T type; }; struct in namespace:Eigen::internal
75 template <class T> struct remove_const<const T[]> { typedef T type[]; }; struct in namespace:Eigen::internal
76 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 195 milliseconds