Lines Matching refs:std
78 // std::cout << foo;
94 typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT
106 explicit Message(const char* str) : ss_(new ::std::stringstream) {
114 // overloads are defined in the global namespace instead of ::std.
117 // overloads are visible in either the std namespace or the global
179 Message& operator <<(const ::std::wstring& wstr);
182 // Gets the text streamed to this object so far as an std::string.
186 std::string GetString() const;
190 const std::unique_ptr< ::std::stringstream> ss_;
198 inline std::ostream& operator <<(std::ostream& os, const Message& sb) {
204 // Converts a streamable value to an std::string. A NULL pointer is
206 // ::std::string, ::wstring, or ::std::wstring object, each NUL
209 std::string StreamableToString(const T& streamable) {