Lines Matching defs:os

71                                 size_t count, ostream* os) {  in PrintByteSegmentInObjectTo()
90 ostream* os) { in PrintBytesInObjectToImpl()
131 ostream* os) { in PrintBytesInObjectTo()
151 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { in PrintAsCharLiteralTo()
200 static CharFormat PrintAsStringLiteralTo(char32_t c, ostream* os) { in PrintAsStringLiteralTo()
231 static CharFormat PrintAsStringLiteralTo(char c, ostream* os) { in PrintAsStringLiteralTo()
236 static CharFormat PrintAsStringLiteralTo(char8_t c, ostream* os) { in PrintAsStringLiteralTo()
241 static CharFormat PrintAsStringLiteralTo(char16_t c, ostream* os) { in PrintAsStringLiteralTo()
245 static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) { in PrintAsStringLiteralTo()
253 void PrintCharAndCodeTo(Char c, ostream* os) { in PrintCharAndCodeTo()
276 void PrintTo(unsigned char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } in PrintTo()
277 void PrintTo(signed char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } in PrintTo()
281 void PrintTo(wchar_t wc, ostream* os) { PrintCharAndCodeTo(wc, os); } in PrintTo()
284 void PrintTo(char32_t c, ::std::ostream* os) { in PrintTo()
291 void PrintTo(__uint128_t v, ::std::ostream* os) { in PrintTo()
324 void PrintTo(__int128_t v, ::std::ostream* os) { in PrintTo()
342 PrintCharsAsStringTo(const CharType* begin, size_t len, ostream* os) { in PrintCharsAsStringTo()
372 ostream* os) { in UniversalPrintCharArray()
394 void UniversalPrintArray(const char* begin, size_t len, ostream* os) { in UniversalPrintArray()
401 void UniversalPrintArray(const char8_t* begin, size_t len, ostream* os) { in UniversalPrintArray()
408 void UniversalPrintArray(const char16_t* begin, size_t len, ostream* os) { in UniversalPrintArray()
414 void UniversalPrintArray(const char32_t* begin, size_t len, ostream* os) { in UniversalPrintArray()
420 void UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) { in UniversalPrintArray()
428 void PrintCStringTo(const Char* s, ostream* os) { in PrintCStringTo()
439 void PrintTo(const char* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
442 void PrintTo(const char8_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
445 void PrintTo(const char16_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
447 void PrintTo(const char32_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
457 void PrintTo(const wchar_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo()
516 void ConditionalPrintAsText(const char* str, size_t length, ostream* os) { in ConditionalPrintAsText()
525 void PrintStringTo(const ::std::string& s, ostream* os) { in PrintStringTo()
534 void PrintU8StringTo(const ::std::u8string& s, ostream* os) { in PrintU8StringTo()
539 void PrintU16StringTo(const ::std::u16string& s, ostream* os) { in PrintU16StringTo()
543 void PrintU32StringTo(const ::std::u32string& s, ostream* os) { in PrintU32StringTo()
548 void PrintWideStringTo(const ::std::wstring& s, ostream* os) { in PrintWideStringTo()