Home | History | Annotate | Download | only in src

Lines Matching refs:wchar_t

907 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length,
1238 bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {
1254 // StringType here can be const char*, const wchar_t*, ::std::string,
1288 const wchar_t* needle, const wchar_t* haystack) {
1300 const wchar_t* needle, const wchar_t* haystack) {
1428 // code_point parameter is of type UInt32 because wchar_t may not be
1470 // with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16.
1475 inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) {
1476 return sizeof(wchar_t) == 2 &&
1481 inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first,
1482 wchar_t second) {
1484 return (sizeof(wchar_t) == 2) ?
1493 // UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS)
1494 // UTF-32 if sizeof(wchar_t) == 4 (on Linux)
1497 // of wchar_t characters processed. -1 is used when the entire string
1504 String WideStringToUtf8(const wchar_t* str, int num_chars) {
1530 String String::ShowWideCString(const wchar_t * wide_c_str) {
1538 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) {
1551 bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) {
1562 const wchar_t* expected,
1563 const wchar_t* actual) {
1578 const wchar_t* s1,
1579 const wchar_t* s2) {
1616 bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
1617 const wchar_t* rhs) {
4770 // instantiated to either char or wchar_t.
4845 void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) {
4852 // wchar_t.
4894 void InitGoogleTest(int* argc, wchar_t** argv) {