Home | History | Annotate | Download | only in src

Lines Matching refs: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,
1222 bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {
1238 // StringType here can be const char*, const wchar_t*, ::std::string,
1273 const wchar_t* needle, const wchar_t* haystack) {
1285 const wchar_t* needle, const wchar_t* haystack) {
1413 // code_point parameter is of type UInt32 because wchar_t may not be
1455 // with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16.
1460 inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) {
1461 return sizeof(wchar_t) == 2 &&
1466 inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first,
1467 wchar_t second) {
1469 return (sizeof(wchar_t) == 2) ?
1478 // UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS)
1479 // UTF-32 if sizeof(wchar_t) == 4 (on Linux)
1482 // of wchar_t characters processed. -1 is used when the entire string
1489 String WideStringToUtf8(const wchar_t* str, int num_chars) {
1515 String String::ShowWideCString(const wchar_t * wide_c_str) {
1523 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) {
1536 bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) {
1547 const wchar_t* expected,
1548 const wchar_t* actual) {
1563 const wchar_t* s1,
1564 const wchar_t* s2) {
1603 bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
1604 const wchar_t* rhs) {
4524 // instantiated to either char or wchar_t.
4591 void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) {
4598 // wchar_t.
4638 void InitGoogleTest(int* argc, wchar_t** argv) {