OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:remove_volatile
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/cld/base/
type_traits.h
21
//
remove_volatile
146
template<typename T> struct
remove_volatile
{ typedef T type; };
struct in namespace:base
147
template<typename T> struct
remove_volatile
<T volatile> { typedef T type; };
struct in namespace:base
149
typedef typename remove_const<typename
remove_volatile
<T>::type>::type type;
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits.h
49
//
remove_volatile
84
template <class T> struct
remove_volatile
;
275
template<typename T> struct
remove_volatile
{ typedef T type; };
struct in namespace:google::protobuf::internal
276
template<typename T> struct
remove_volatile
<T volatile> { typedef T type; };
struct in namespace:google::protobuf::internal
278
typedef typename remove_const<typename
remove_volatile
<T>::type>::type type;
/external/llvm/include/llvm/Support/
type_traits.h
106
template <typename T> struct
remove_volatile
{ typedef T type; };
struct in namespace:llvm
107
template <typename T> struct
remove_volatile
<volatile T> { typedef T type; };
struct in namespace:llvm
112
typedef typename remove_const<typename
remove_volatile
<T>::type>::type type;
Completed in 199 milliseconds