Searched refs:CompileAssertTypesEqual (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_unittest.cc | 244 using testing::internal::CompileAssertTypesEqual; 7097 TEST(CompileAssertTypesEqual, CompilesWhenTypesAreEqual) { in TEST() argument 7098 CompileAssertTypesEqual<void, void>(); in TEST() 7099 CompileAssertTypesEqual<int*, int*>(); in TEST() 7104 CompileAssertTypesEqual<int, RemoveReference<int>::type>(); in TEST() 7105 CompileAssertTypesEqual<const char, RemoveReference<const char>::type>(); in TEST() 7110 CompileAssertTypesEqual<int, RemoveReference<int&>::type>(); in TEST() 7111 CompileAssertTypesEqual<const char, RemoveReference<const char&>::type>(); in TEST() 7118 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_(T2)>(); in TestGTestRemoveReference() 7129 CompileAssertTypesEqual<int, RemoveConst<int>::type>(); in TEST() [all …]
|
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 685 struct CompileAssertTypesEqual; 688 struct CompileAssertTypesEqual<T, T> {
|