Lines Matching defs:pointer
86 // can stream a NULL char pointer to it in the former, but not in the
88 // class hides this difference by treating a NULL char pointer as
110 // Streams a non-pointer value to this object.
132 // Streams a pointer value to this object.
135 // stream a pointer to a Message, this definition will be used as it
137 // [temp.func.order].) If you stream a non-pointer, then the
140 // The reason for this overload is that streaming a NULL pointer to
146 inline Message& operator <<(T* const& pointer) { // NOLINT
147 if (pointer == nullptr) {
150 *ss_ << pointer;
204 // Converts a streamable value to an std::string. A NULL pointer is