Lines Matching refs:std
82 // std::cout << foo;
98 typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
105 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT
110 explicit Message(const char* str) : ss_(new ::std::stringstream) {
118 // overloads are defined in the global namespace instead of ::std.
121 // overloads are visible in either the std namespace or the global
181 Message& operator<<(const ::std::wstring& wstr);
184 // Gets the text streamed to this object so far as an std::string.
188 std::string GetString() const;
192 const std::unique_ptr< ::std::stringstream> ss_;
200 inline std::ostream& operator<<(std::ostream& os, const Message& sb) {
206 // Converts a streamable value to an std::string. A NULL pointer is
208 // ::std::string, ::wstring, or ::std::wstring object, each NUL
211 std::string StreamableToString(const T& streamable) {