Home | History | Annotate | Download | only in gtest

Lines Matching defs:is_pointer

226 //   is_pointer     - as in TR1; needed on Symbian and IBM XL C/C++ only.
2293 // so a tr1::type_traits-like is_pointer works.
2309 struct is_pointer : public false_type {};
2312 struct is_pointer<T*> : public true_type {};
6592 // for T and T*, so a tr1::type_traits-like is_pointer works, and we
6612 typename internal::is_pointer<T>::type(), value);
6617 // These are needed as the above solution using is_pointer has the
7985 StreamHelper(typename internal::is_pointer<T>::type(), value);
8070 // tr1::type_traits-like is_pointer works, and we can overload on that.