remove_cv          85 third_party/protobuf/src/google/protobuf/stubs/type_traits.h template <class T> struct remove_cv;
remove_cv         568 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc   COMPILE_ASSERT_TYPES_EQ(int, remove_cv<int>::type);
remove_cv         569 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc   COMPILE_ASSERT_TYPES_EQ(int, remove_cv<volatile int>::type);
remove_cv         570 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc   COMPILE_ASSERT_TYPES_EQ(int, remove_cv<const int>::type);
remove_cv         571 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc   COMPILE_ASSERT_TYPES_EQ(int *, remove_cv<int * const volatile>::type);
remove_cv         574 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc                           remove_cv<const volatile int *>::type);
remove_cv         576 third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc                           remove_cv<const volatile int>::type);