OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:remove_const
(Results
1 - 8
of
8
) 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;
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/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;
/prebuilts/misc/linux-x86_64/protobuf2.5/include/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;
/prebuilts/misc/windows/protobuf2.5/include/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;
/prebuilts/tools/linux-x86_64/protoc/include/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
/prebuilts/tools/darwin-x86_64/protoc/include/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/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 316 milliseconds