Home
last modified time | relevance | path

Searched refs:RemoveConst (Results 1 – 12 of 12) sorted by relevance

/external/google-breakpad/src/testing/gtest/include/gtest/internal/
Dgtest-internal.h793 struct RemoveConst { typedef T type; }; // NOLINT
795 struct RemoveConst<const T> { typedef T type; }; // NOLINT
801 struct RemoveConst<const T[N]> {
802 typedef typename RemoveConst<T>::type type[N];
810 struct RemoveConst<T[N]> {
811 typedef typename RemoveConst<T>::type type[N];
818 typename ::testing::internal::RemoveConst<T>::type
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-internal.h795 struct RemoveConst { typedef T type; }; // NOLINT
797 struct RemoveConst<const T> { typedef T type; }; // NOLINT
803 struct RemoveConst<const T[N]> {
804 typedef typename RemoveConst<T>::type type[N];
812 struct RemoveConst<T[N]> {
813 typedef typename RemoveConst<T>::type type[N];
820 typename ::testing::internal::RemoveConst<T>::type
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-internal.h795 struct RemoveConst { typedef T type; }; // NOLINT
797 struct RemoveConst<const T> { typedef T type; }; // NOLINT
803 struct RemoveConst<const T[N]> {
804 typedef typename RemoveConst<T>::type type[N];
812 struct RemoveConst<T[N]> {
813 typedef typename RemoveConst<T>::type type[N];
820 typename ::testing::internal::RemoveConst<T>::type
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
Dgtest-internal.h795 struct RemoveConst { typedef T type; }; // NOLINT
797 struct RemoveConst<const T> { typedef T type; }; // NOLINT
803 struct RemoveConst<const T[N]> {
804 typedef typename RemoveConst<T>::type type[N];
812 struct RemoveConst<T[N]> {
813 typedef typename RemoveConst<T>::type type[N];
820 typename ::testing::internal::RemoveConst<T>::type
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-internal.h831 struct RemoveConst { typedef T type; }; // NOLINT
833 struct RemoveConst<const T> { typedef T type; }; // NOLINT
839 struct RemoveConst<const T[N]> {
840 typedef typename RemoveConst<T>::type type[N];
848 struct RemoveConst<T[N]> {
849 typedef typename RemoveConst<T>::type type[N];
856 typename ::testing::internal::RemoveConst<T>::type
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
Dgtest-internal.h813 struct RemoveConst { typedef T type; }; // NOLINT
815 struct RemoveConst<const T> { typedef T type; }; // NOLINT
824 struct RemoveConst<const T[N]> {
825 typedef typename RemoveConst<T>::type type[N];
832 typename ::testing::internal::RemoveConst<T>::type
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-internal.h822 struct RemoveConst { typedef T type; }; // NOLINT
824 struct RemoveConst<const T> { typedef T type; }; // NOLINT
833 struct RemoveConst<const T[N]> {
834 typedef typename RemoveConst<T>::type type[N];
841 typename ::testing::internal::RemoveConst<T>::type
/external/googletest/googletest/include/gtest/internal/
Dgtest-internal.h871 struct RemoveConst { typedef T type; }; // NOLINT
873 struct RemoveConst<const T> { typedef T type; }; // NOLINT
879 struct RemoveConst<const T[N]> {
880 typedef typename RemoveConst<T>::type type[N];
886 typename ::testing::internal::RemoveConst<T>::type
/external/protobuf/src/google/protobuf/stubs/
Dmap_util.h49 template <class T> struct RemoveConst { typedef T type; }; argument
50 template <class T> struct RemoveConst<const T> : RemoveConst<T> {};
/external/google-breakpad/src/testing/gtest/test/
Dgtest_unittest.cc181 using testing::internal::RemoveConst;
7262 CompileAssertTypesEqual<int, RemoveConst<int>::type>(); in TEST()
7263 CompileAssertTypesEqual<char&, RemoveConst<char&>::type>(); in TEST()
7268 CompileAssertTypesEqual<int, RemoveConst<const int>::type>(); in TEST()
7269 CompileAssertTypesEqual<char[2], RemoveConst<const char[2]>::type>(); in TEST()
7270 CompileAssertTypesEqual<char[2][3], RemoveConst<const char[2][3]>::type>(); in TEST()
/external/googletest/googletest/test/
Dgtest_unittest.cc265 using testing::internal::RemoveConst;
7202 CompileAssertTypesEqual<int, RemoveConst<int>::type>(); in TEST()
7203 CompileAssertTypesEqual<char&, RemoveConst<char&>::type>(); in TEST()
7208 CompileAssertTypesEqual<int, RemoveConst<const int>::type>(); in TEST()
7209 CompileAssertTypesEqual<char[2], RemoveConst<const char[2]>::type>(); in TEST()
7210 CompileAssertTypesEqual<char[2][3], RemoveConst<const char[2][3]>::type>(); in TEST()
/external/epid-sdk/ext/gtest/
Dgtest.h8541 struct RemoveConst { typedef T type; }; // NOLINT
8543 struct RemoveConst<const T> { typedef T type; }; // NOLINT
8549 struct RemoveConst<const T[N]> {
8550 typedef typename RemoveConst<T>::type type[N];
8558 struct RemoveConst<T[N]> {
8559 typedef typename RemoveConst<T>::type type[N];
8566 typename ::testing::internal::RemoveConst<T>::type