Home | History | Annotate | Download | only in googletest

Lines Matching full:wchar_t

127 // Depending on the value of a char (or wchar_t), we print it in one
141 inline bool IsPrintableAscii(wchar_t c) {
151 switch (static_cast<wchar_t>(c)) {
196 static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) {
205 return PrintAsCharLiteralTo<wchar_t>(c, os);
252 // Prints a wchar_t as a symbol if it is printable or as its internal
254 void PrintTo(wchar_t wc, ostream* os) {
255 PrintCharAndCodeTo<wchar_t>(wc, os);
285 static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len,
290 const wchar_t cur = begin[index];
313 // of unsigned short. Defining an overload for const wchar_t* in that case
317 // wchar_t is implemented as a native type.
320 void PrintTo(const wchar_t* s, ostream* os) {
328 #endif // wchar_t is native