Lines Matching refs:ostream
41 // type Foo by defining either operator<<(::std::ostream&, const Foo&)
42 // or void PrintTo(const Foo&, ::std::ostream*) in the namespace that
48 #include <ostream> // NOLINT
56 using ::std::ostream;
68 size_t count, ostream* os) {
85 // Prints the bytes in the given value to the given ostream.
87 ostream* os) {
119 ostream* os) {
150 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
196 static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) {
211 static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) {
220 void PrintCharAndCodeTo(Char c, ostream* os) {
245 void PrintTo(unsigned char c, ::std::ostream* os) {
248 void PrintTo(signed char c, ::std::ostream* os) {
254 void PrintTo(wchar_t wc, ostream* os) {
258 // Prints the given array of characters to the ostream.
261 static void PrintCharsAsStringTo(const char* begin, size_t len, ostream* os) {
278 void UniversalPrintArray(const char* begin, size_t len, ostream* os) {
282 // Prints the given array of wide characters to the ostream.
286 ostream* os) {
303 // Prints the given C string to the ostream.
304 void PrintTo(const char* s, ostream* os) {
320 // Prints the given wide C string to the ostream.
321 void PrintTo(const wchar_t* s, ostream* os) {
333 void PrintStringTo(const ::string& s, ostream* os) {
338 void PrintStringTo(const ::std::string& s, ostream* os) {
344 void PrintWideStringTo(const ::wstring& s, ostream* os) {
350 void PrintWideStringTo(const ::std::wstring& s, ostream* os) {