Lines Matching defs:pointer
81 // can stream a NULL char pointer to it in the former, but not in the
83 // class hides this difference by treating a NULL char pointer as
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
135 // Streams a pointer value to this object.
138 // stream a pointer to a Message, this definition will be used as it
140 // [temp.func.order].) If you stream a non-pointer, then the
143 // The reason for this overload is that streaming a NULL pointer to
149 inline Message& operator <<(T* const& pointer) { // NOLINT
150 if (pointer == NULL) {
153 *ss_ << pointer;
206 inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) {
207 if (pointer == NULL) {
210 *ss_ << pointer;
238 // Converts a streamable value to an std::string. A NULL pointer is