Home | History | Annotate | Download | only in gtest

Lines Matching refs:pointer

78 // can stream a NULL char pointer to it in the former, but not in the
80 // class hides this difference by treating a NULL char pointer as
111 // Streams a value (either a pointer or not) to this object.
118 // Streams a non-pointer value to this object.
125 // Streams a pointer value to this object.
128 // stream a pointer to a Message, this definition will be used as it
130 // [temp.func.order].) If you stream a non-pointer, then the
133 // The reason for this overload is that streaming a NULL pointer to
139 inline Message& operator <<(T* const& pointer) { // NOLINT
140 if (pointer == NULL) {
143 ::GTestStreamToHelper(ss_.get(), pointer);
202 inline void StreamHelper(internal::true_type /*dummy*/, T* pointer) {
203 if (pointer == NULL) {
206 ::GTestStreamToHelper(ss_.get(), pointer);