Home | History | Annotate | Download | only in src

Lines Matching full: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;
60 size_t count, ostream* os) {
77 // Prints the bytes in the given value to the given ostream.
79 ostream* os) {
111 ostream* os) {
142 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
188 static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) {
203 static CharFormat PrintAsStringLiteralTo(char c, ostream* os) {
213 void PrintCharAndCodeTo(Char c, ostream* os) {
238 void PrintTo(unsigned char c, ::std::ostream* os) {
241 void PrintTo(signed char c, ::std::ostream* os) {
247 void PrintTo(wchar_t wc, ostream* os) {
251 // Prints the given array of characters to the ostream. CharType must be either
257 const CharType* begin, size_t len, ostream* os) {
278 const CharType* begin, size_t len, ostream* os) {
300 void UniversalPrintArray(const char* begin, size_t len, ostream* os) {
306 void UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) {
310 // Prints the given C string to the ostream.
311 void PrintTo(const char* s, ostream* os) {
327 // Prints the given wide C string to the ostream.
328 void PrintTo(const wchar_t* s, ostream* os) {
340 void PrintStringTo(const ::string& s, ostream* os) {
345 void PrintStringTo(const ::std::string& s, ostream* os) {
351 void PrintWideStringTo(const ::wstring& s, ostream* os) {
357 void PrintWideStringTo(const ::std::wstring& s, ostream* os) {