Lines Matching defs:pointer
90 // can stream a NULL char pointer to it in the former, but not in the
92 // class hides this difference by treating a NULL char pointer as
114 // Streams a non-pointer value to this object.
136 // Streams a pointer value to this object.
139 // stream a pointer to a Message, this definition will be used as it
141 // [temp.func.order].) If you stream a non-pointer, then the
144 // The reason for this overload is that streaming a NULL pointer to
150 inline Message& operator<<(T* const& pointer) { // NOLINT
151 if (pointer == nullptr) {
154 *ss_ << pointer;
206 // Converts a streamable value to an std::string. A NULL pointer is