Home | History | Annotate | Download | only in src

Lines Matching full:wchar_t

872 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length,
928 // For a wchar_t value, we print it as a C++ wchar_t literal and as an
930 String FormatForFailureMessage(wchar_t wchar) {
931 // The C++ standard doesn't specify the exact size of the wchar_t
935 // Therefore, in order to print a wchar_t value in the numeric form,
1252 bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {
1268 // StringType here can be const char*, const wchar_t*, ::std::string,
1303 const wchar_t* needle, const wchar_t* haystack) {
1315 const wchar_t* needle, const wchar_t* haystack) {
1443 // code_point parameter is of type UInt32 because wchar_t may not be
1485 // with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16.
1490 inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) {
1491 return sizeof(wchar_t) == 2 &&
1496 inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first,
1497 wchar_t second) {
1499 return (sizeof(wchar_t) == 2) ?
1508 // UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS)
1509 // UTF-32 if sizeof(wchar_t) == 4 (on Linux)
1512 // of wchar_t characters processed. -1 is used when the entire string
1519 String WideStringToUtf8(const wchar_t* str, int num_chars) {
1545 String String::ShowWideCString(const wchar_t * wide_c_str) {
1553 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) {
1566 bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) {
1577 const wchar_t* expected,
1578 const wchar_t* actual) {
1593 const wchar_t* s1,
1594 const wchar_t* s2) {
1633 bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
1634 const wchar_t* rhs) {
4582 // instantiated to either char or wchar_t.
4654 void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) {
4661 // wchar_t.
4701 void InitGoogleTest(int* argc, wchar_t** argv) {