remove_volatile 147 third_party/cld/base/type_traits.h template<typename T> struct remove_volatile<T volatile> { typedef T type; }; remove_volatile 149 third_party/cld/base/type_traits.h typedef typename remove_const<typename remove_volatile<T>::type>::type type; remove_volatile 84 third_party/protobuf/src/google/protobuf/stubs/type_traits.h template <class T> struct remove_volatile; remove_volatile 276 third_party/protobuf/src/google/protobuf/stubs/type_traits.h template<typename T> struct remove_volatile<T volatile> { typedef T type; }; remove_volatile 278 third_party/protobuf/src/google/protobuf/stubs/type_traits.h typedef typename remove_const<typename remove_volatile<T>::type>::type type; remove_volatile 557 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc COMPILE_ASSERT_TYPES_EQ(int, remove_volatile<int>::type); remove_volatile 558 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc COMPILE_ASSERT_TYPES_EQ(int, remove_volatile<volatile int>::type); remove_volatile 559 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc COMPILE_ASSERT_TYPES_EQ(int *, remove_volatile<int * volatile>::type); remove_volatile 562 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc remove_volatile<volatile int *>::type); remove_volatile 564 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc remove_volatile<const volatile int>::type);