Lines Matching defs:pointer
97 // can stream a NULL char pointer to it in the former, but not in the
99 // class hides this difference by treating a NULL char pointer as
121 // Streams a non-pointer value to this object. If building a version of
153 // Streams a non-pointer value with an AbslStringify definition to this
167 // Streams a pointer value to this object.
170 // stream a pointer to a Message, this definition will be used as it
172 // [temp.func.order].) If you stream a non-pointer, then the
175 // The reason for this overload is that streaming a NULL pointer to
181 inline Message& operator<<(T* const& pointer) { // NOLINT
182 if (pointer == nullptr) {
185 *ss_ << pointer;
237 // Converts a streamable value to an std::string. A NULL pointer is