Searched refs:is_pointer (Results 1 - 10 of 10) sorted by relevance

/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-message.h109 StreamHelper(typename internal::is_pointer<T>::type(), value);
204 // tr1::type_traits-like is_pointer works, and we can overload on that.
206 inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
214 inline void StreamHelper(internal::false_type /*is_pointer*/,
H A Dgtest-printers.h477 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
H A Dgtest.h1458 typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
/gem5/ext/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc524 TEST(TypeTraitsTest, is_pointer) {
525 EXPECT_FALSE(is_pointer<int>::value);
526 EXPECT_FALSE(is_pointer<char&>::value);
527 EXPECT_TRUE(is_pointer<const int*>::value);
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h619 std::is_pointer<T>::value && std::is_function<typename std::remove_pointer<T>::type>::value>;
631 std::is_pointer<F>::value || std::is_member_pointer<F>::value,
641 std::is_function, std::is_pointer, std::is_member_pointer>;
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h750 conditional_t<std::is_pointer<remove_reference_t<T>>::value,
763 conditional_t<std::is_pointer<typename std::remove_reference<T>::type>::value,
1594 std::is_void, std::is_pointer, std::is_reference, std::is_const
1617 (std::is_reference<type>::value || std::is_pointer<type>::value) &&
1633 !std::is_pointer<Return>::value
1677 policy = std::is_pointer<T>::value ? return_value_policy::take_ownership : return_value_policy::copy;
1679 policy = std::is_pointer<T>::value ? return_value_policy::reference : return_value_policy::copy;
H A Dnumpy.h1472 satisfies_none_of<call_type, std::is_pointer, std::is_array, is_std_array, std::is_enum>::value &&
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h216 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
2197 // so a tr1::type_traits-like is_pointer works.
2213 struct is_pointer : public false_type {}; struct in namespace:testing::internal
2216 struct is_pointer<T*> : public true_type {}; struct in namespace:testing::internal
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-actions.h633 GTEST_COMPILE_ASSERT_(internal::is_pointer<Result>::value,
H A Dgmock-matchers.h2201 is_pointer<GTEST_REMOVE_CONST_(T)>::type(),
2215 bool MatchAndExplainImpl(true_type /* is_pointer */, const Class* p,
2262 is_pointer<GTEST_REMOVE_CONST_(T)>::type(),
2286 bool MatchAndExplainImpl(true_type /* is_pointer */, const Class* p,

Completed in 72 milliseconds